src/orderbook/dto/force-order.dto.ts
Properties |
| instrumentId |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/orderbook/dto/force-order.dto.ts:11
|
| investorId |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/orderbook/dto/force-order.dto.ts:7
|
import { ApiProperty } from "@nestjs/swagger";
import { IsString } from "class-validator";
export class ForceOrderRedemptionDto {
@ApiProperty()
@IsString()
investorId: string;
@ApiProperty()
@IsString()
instrumentId: string;
}