EngagementDto
Response DTO for engagement information
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique code for this engagement (auto-generated based on date) |
Unique code for this engagement (auto-generated based on date) | ||
| guid | string | Unique identifier for this engagement |
Unique identifier for this engagement | ||
| client | CodeAndNameDto | |
| date | string | Date of the engagement |
Date of the engagement | ||
| status | enum | Unsent Sent Viewed Accepted Rejected |
Unsent Sent Viewed Accepted Rejected | ||
| type | enum | ProposalAndEngagementLetter EngagementLetter |
ProposalAndEngagementLetter EngagementLetter | ||
| typeName | string | Display name for the engagement type ("Proposal" or "Engagement Letter") |
Display name for the engagement type ("Proposal" or "Engagement Letter") | ||
| recipientFirstName | string | First name of the recipient for this engagement |
First name of the recipient for this engagement | ||
| recipientLastName | string | Last name of the recipient for this engagement |
Last name of the recipient for this engagement | ||
| recipientEmail | string | Email address of the recipient for this engagement |
Email address of the recipient for this engagement | ||
| 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 engagement was last viewed |
Date and time when the engagement was last viewed | ||
| annualValue | number | Total annual value of all services in this engagement |
Total annual value of all services in this engagement | ||
| numberOfServices | integer | Number of services included in this engagement |
Number of services included in this engagement | ||
| proposalServices | array of ClientBillableServiceDto | List of services included in this engagement. |
List of services included in this engagement. | ||
| link | string | Public link for accepting this engagement. |
Public link for accepting this engagement. | ||
JSON Example
{
"code": "string",
"guid": "00000000-0000-0000-0000-000000000000",
"client": {
"code": "string",
"name": "string"
},
"date": "2024-01-01",
"status": "Unsent"
}