docs/CatalogJobErrorPayload.md in klaviyo-api-sdk-1.1.0 vs docs/CatalogJobErrorPayload.md in klaviyo-api-sdk-1.2.0

- old
+ new

@@ -2,25 +2,25 @@ ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | -| **id** | **String** | | | -| **code** | **String** | | | -| **title** | **String** | | | -| **detail** | **String** | | | +| **id** | **String** | Unique identifier for the error. | | +| **code** | **String** | A code for classifying the error type. | | +| **title** | **String** | A high-level message about the error. | | +| **detail** | **String** | Specific details about the error. | | | **source** | [**ErrorSource**](ErrorSource.md) | | | ## Example ```ruby require 'klaviyo-api-sdk' instance = KlaviyoAPI::CatalogJobErrorPayload.new( - id: null, - code: null, - title: null, - detail: null, + id: e4eebb08-b055-4a6f-bb13-c8cb69c9eb94, + code: invalid, + title: Invalid input, + detail: The payload provided in the request is invalid., source: null ) ```