import { ApiProperty } from "@nestjs/swagger"; import { IsIn } from "class-validator"; import { POA_DECLARATIONS, PoaDeclaration, } from "./complete-identity-verification.dto"; export class SetPoaDeclaredDto { @ApiProperty({ enum: POA_DECLARATIONS, description: 'Whether anyone holds power of attorney for this company. "no" tears down any representative already recorded.', }) @IsIn(POA_DECLARATIONS) declared!: PoaDeclaration; }