Represents a RetrieveMerchantCustomAttribute response.
Either custom_attribute_definition
or errors
is present in the response.
RetrieveMerchantCustomAttributeResponse
Name | Type | Tags | Description | Getter |
---|---|---|---|---|
CustomAttribute |
CustomAttribute |
Optional | A custom attribute value. Each custom attribute value has a correspondingCustomAttributeDefinition object. |
CustomAttribute getCustomAttribute() |
Errors |
List<Error> |
Optional | Any errors that occurred during the request. | List getErrors() |
{
"custom_attribute": {
"key": "key2",
"value": {
"key1": "val1",
"key2": "val2"
},
"version": 102,
"visibility": "VISIBILITY_READ_ONLY",
"definition": {
"key": "key0",
"schema": {
"key1": "val1",
"key2": "val2"
},
"name": "name0",
"description": "description0",
"visibility": "VISIBILITY_HIDDEN"
}
},
"errors": [
{
"category": "MERCHANT_SUBSCRIPTION_ERROR",
"code": "INVALID_EXPIRATION",
"detail": "detail6",
"field": "field4"
},
{
"category": "MERCHANT_SUBSCRIPTION_ERROR",
"code": "INVALID_EXPIRATION",
"detail": "detail6",
"field": "field4"
}
]
}