src/docusign/dtos/send-contract.dto.ts
Properties |
| emailSubject |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/docusign/dtos/send-contract.dto.ts:7
|
| fundId |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/docusign/dtos/send-contract.dto.ts:19
|
| htmlString |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/docusign/dtos/send-contract.dto.ts:27
|
| orderId |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/docusign/dtos/send-contract.dto.ts:23
|
| receiverEmail |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/docusign/dtos/send-contract.dto.ts:11
|
| receiverName |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/docusign/dtos/send-contract.dto.ts:15
|
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;
}