Skip to content

Latest commit

 

History

History
76 lines (67 loc) · 2.25 KB

bulk-upsert-location-custom-attributes-response.md

File metadata and controls

76 lines (67 loc) · 2.25 KB

Bulk Upsert Location Custom Attributes Response

Represents a BulkUpsertLocationCustomAttributes response, which contains a map of responses that each corresponds to an individual upsert request.

Structure

BulkUpsertLocationCustomAttributesResponse

Fields

Name Type Tags Description
values Record<string, BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponse> | undefined Optional A map of responses that correspond to individual upsert requests. Each response has the
same ID as the corresponding request and contains either a location_id and custom_attribute or an errors field.
errors Error[] | undefined Optional Any errors that occurred during the request.

Example (as JSON)

{
  "values": {
    "key0": {
      "location_id": "location_id4",
      "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": "MAP_KEY_LENGTH_TOO_LONG",
          "detail": "detail6",
          "field": "field4"
        },
        {
          "category": "MERCHANT_SUBSCRIPTION_ERROR",
          "code": "MAP_KEY_LENGTH_TOO_LONG",
          "detail": "detail6",
          "field": "field4"
        }
      ]
    }
  },
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    },
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    }
  ]
}