Sha256: 2b32131f489fdea42c48cff0f92cd6c8f2a1083e9d6b782d464e937f060d755e
Contents?: true
Size: 1.53 KB
Versions: 2
Compression:
Stored size: 1.53 KB
Contents
# PCPServerSDK::CreateCommerceCaseResponse ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **commerce_case_id** | **String** | Unique ID of the Commerce Case. It can used to add additional Checkouts to the Commerce Case. | [optional] | | **merchant_reference** | **String** | Unique reference of the Commerce Case that is also returned for reporting and reconciliation purposes. | [optional] | | **customer** | [**Customer**](Customer.md) | | [optional] | | **checkout** | [**CreateCheckoutResponse**](CreateCheckoutResponse.md) | | [optional] | | **creation_date_time** | **Time** | Creation date and time of the Checkout in RFC3339 format. It can either be provided in the request or otherwise will be automatically set to the time when the request CreateCommerceCase was received. Response values will always be in UTC time, but when providing this field in the requests, the time offset can have different formats. Accepted formats are: * YYYY-MM-DD'T'HH:mm:ss'Z' * YYYY-MM-DD'T'HH:mm:ss+XX:XX * YYYY-MM-DD'T'HH:mm:ss-XX:XX * YYYY-MM-DD'T'HH:mm'Z' * YYYY-MM-DD'T'HH:mm+XX:XX * YYYY-MM-DD'T'HH:mm-XX:XX All other formats may be ignored by the system. | [optional] | ## Example ```ruby require 'PCP-server-Ruby-SDK' instance = PCPServerSDK::CreateCommerceCaseResponse.new( commerce_case_id: 707ef15b-7a0a-48f2-b7d8-c95103418a9c, merchant_reference: customer-commerce-case-123, customer: null, checkout: null, creation_date_time: null ) ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pcp-server-ruby-sdk-0.0.6 | docs/CreateCommerceCaseResponse.md |
pcp-server-ruby-sdk-0.1.0 | docs/CreateCommerceCaseResponse.md |