src/profile/dto/investor-sanction.dto.ts
Properties |
| isAmlEnabled |
Type : boolean
|
Decorators :
@ApiProperty()
|
|
Defined in src/profile/dto/investor-sanction.dto.ts:11
|
| isKycEnabled |
Type : boolean
|
Decorators :
@ApiProperty()
|
|
Defined in src/profile/dto/investor-sanction.dto.ts:7
|
| isSanctionPassed |
Type : boolean
|
Decorators :
@ApiProperty()
|
|
Defined in src/profile/dto/investor-sanction.dto.ts:15
|
import { ApiProperty } from "@nestjs/swagger";
import { IsBoolean } from "class-validator";
export class InvestorSanctionDto {
@ApiProperty()
@IsBoolean()
isKycEnabled: boolean;
@ApiProperty()
@IsBoolean()
isAmlEnabled: boolean;
@ApiProperty()
@IsBoolean()
isSanctionPassed: boolean;
}