ProposalDto
Response DTO for proposal information
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique code for this proposal (auto-generated based on date) |
Unique code for this proposal (auto-generated based on date) | ||
| guid | string | Unique identifier for this proposal |
Unique identifier for this proposal | ||
| client | CodeAndNameDto | |
| date | string | Date of the proposal |
Date of the proposal | ||
| status | enum | Unsent Sent Viewed Accepted Rejected |
Unsent Sent Viewed Accepted Rejected | ||
| recipientFirstName | string | First name of the recipient for this proposal |
First name of the recipient for this proposal | ||
| recipientLastName | string | Last name of the recipient for this proposal |
Last name of the recipient for this proposal | ||
| recipientEmail | string | Email address of the recipient for this proposal |
Email address of the recipient for this proposal | ||
| hasProposalPdf | boolean | Indicates whether a proposal PDF has been uploaded |
Indicates whether a proposal PDF has been uploaded | ||
| hasLofEPdf | boolean | Indicates whether a letter of engagement PDF has been uploaded |
Indicates whether a letter of engagement PDF has been uploaded | ||
| proposalTemplate | CodeAndNameDto | |
| lofETemplate | CodeAndNameDto | |
| acceptance | AcceptanceDto | |
| lastViewed | string | Date and time when the proposal was last viewed |
Date and time when the proposal was last viewed | ||
| annualValue | number | Total annual value of all services in this proposal |
Total annual value of all services in this proposal | ||
| numberOfServices | integer | Number of services included in this proposal |
Number of services included in this proposal | ||
| proposalServices | array of ClientBillableServiceDto | List of services included in this proposal. |
List of services included in this proposal. | ||
| link | string | Public link for accepting this proposal. |
Public link for accepting this proposal. | ||
JSON Example
{
"code": "string",
"guid": "00000000-0000-0000-0000-000000000000",
"client": {
"code": "string",
"name": "string"
},
"date": "2024-01-01",
"status": "Unsent"
}