ServiceImportPreviewClientDto
Preview for a single client row in the CSV
Properties
| Name | Type | Description |
|---|---|---|
| client | CodeAndNameDto | |
| csvClientName | string | The client name as it appears in the CSV (used when client is not found) |
The client name as it appears in the CSV (used when client is not found) | ||
| error | string | Error message if client could not be matched |
Error message if client could not be matched | ||
| services | array of ServiceImportPreviewActionDto | Services that will be created, updated, or skipped for this client |
Services that will be created, updated, or skipped for this client | ||
JSON Example
{
"client": {
"code": "string",
"name": "string"
},
"csvClientName": "string",
"error": "string",
"services": [
{
"service": "...",
"action": "...",
"price": "...",
"frequency": "...",
"startDate": "..."
}
]
}