File

src/profile/dto/investor-sanction.dto.ts

Index

Properties

Properties

isAmlEnabled
Type : boolean
Decorators :
@ApiProperty()
@IsBoolean()
isKycEnabled
Type : boolean
Decorators :
@ApiProperty()
@IsBoolean()
isSanctionPassed
Type : boolean
Decorators :
@ApiProperty()
@IsBoolean()
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;
}

results matching ""

    No results matching ""