File

src/security/dto/update-nav.dto.ts

Index

Properties

Properties

isAuditedNav
Type : boolean
Decorators :
@ApiProperty()
@ApiProperty()
@IsBoolean()
navPerShare
Type : number
Decorators :
@ApiProperty()
@IsNumber()
timestamp
Type : number
Decorators :
@ApiProperty()
@IsNumber()
import { ApiProperty } from "@nestjs/swagger";
import { IsBoolean, IsNumber } from "class-validator";

export class UpdatedNavDto {
  @ApiProperty()
  @IsNumber()
  navPerShare: number;

  @ApiProperty()
  @IsNumber()
  timestamp: number;

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

results matching ""

    No results matching ""