ServiceCatalogImportRowResultDto
The outcome of importing a single selected row
Properties
| Name | Type | Description |
|---|---|---|
| rowId | string | The RowId from the selection this result relates to |
The RowId from the selection this result relates to | ||
| name | string | The service name from the CSV row (empty when the RowId was not found in the file) |
The service name from the CSV row (empty when the RowId was not found in the file) | ||
| action | string | What was attempted: "Create", "Update" or "Skip" |
What was attempted: "Create", "Update" or "Skip" | ||
| success | boolean | Whether the row imported successfully |
Whether the row imported successfully | ||
| serviceCode | string | The code of the created or updated service; null on failure |
The code of the created or updated service; null on failure | ||
| serviceTermsContentCode | string | The code of the service terms content block linked to the service; null when the row has no terms |
The code of the service terms content block linked to the service; null when the row has no terms | ||
| proposalContentCode | string | The code of the proposal content block linked to the service; null when the row has no proposal content |
The code of the proposal content block linked to the service; null when the row has no proposal content | ||
| error | string | Why the row failed; null on success |
Why the row failed; null on success | ||
JSON Example
{
"rowId": "string",
"name": "string",
"action": "string",
"success": false,
"serviceCode": "string"
}