src/orderbook/dto/fill-redemptionbook.dto.ts
Properties |
| amount |
Type : string
|
Decorators :
@ApiProperty()
|
| instrumentId |
Type : string
|
Decorators :
@ApiProperty()
|
import { ApiProperty } from "@nestjs/swagger";
import { IsString } from "class-validator";
export class FillRedemptionBookDto {
@ApiProperty()
@IsString()
instrumentId: string;
@ApiProperty()
@IsString()
amount: string;
}