File

src/docusign/dtos/send-contract.dto.ts

Index

Properties

Properties

emailSubject
Type : string
Decorators :
@ApiProperty()
@IsString()
fundId
Type : string
Decorators :
@ApiProperty()
@IsString()
htmlString
Type : string
Decorators :
@ApiProperty()
@IsString()
orderId
Type : string
Decorators :
@ApiProperty()
@IsString()
receiverEmail
Type : string
Decorators :
@ApiProperty()
@IsEmail()
receiverName
Type : string
Decorators :
@ApiProperty()
@IsString()
import { ApiProperty } from "@nestjs/swagger";
import { IsEmail, IsString } from "class-validator";

export class SendContractDto {
  @ApiProperty()
  @IsString()
  emailSubject: string;

  @ApiProperty()
  @IsEmail()
  receiverEmail: string;

  @ApiProperty()
  @IsString()
  receiverName: string;

  @ApiProperty()
  @IsString()
  fundId: string;

  @ApiProperty()
  @IsString()
  orderId: string;

  @ApiProperty()
  @IsString()
  htmlString: string;
}

results matching ""

    No results matching ""