src/profile/dto/restirct-investor.dto.ts
Properties |
| instrumentId |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/profile/dto/restirct-investor.dto.ts:7
|
| isRestricted |
Type : boolean
|
Decorators :
@ApiProperty()
|
|
Defined in src/profile/dto/restirct-investor.dto.ts:11
|
import { ApiProperty } from "@nestjs/swagger";
import { IsBoolean, IsString } from "class-validator";
export class RestrictInvestorDto {
@ApiProperty()
@IsString()
instrumentId: string;
@ApiProperty()
@IsBoolean()
isRestricted: boolean;
}