File

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

Index

Properties

Properties

instrumentId
Type : string
Decorators :
@ApiProperty()
@IsString()
isRestricted
Type : boolean
Decorators :
@ApiProperty()
@IsBoolean()
import { ApiProperty } from "@nestjs/swagger";
import { IsBoolean, IsString } from "class-validator";

export class RestrictInvestorDto {
  @ApiProperty()
  @IsString()
  instrumentId: string;

  @ApiProperty()
  @IsBoolean()
  isRestricted: boolean;
}

results matching ""

    No results matching ""