VTEX · Schema

GiftCardTransactionResponse

Gift card transaction response information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
cardId string Gift card identification.
id string Transaction identification.
_self object
View JSON Schema on GitHub

JSON Schema

vtex-giftcardtransactionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GiftCardTransactionResponse",
  "title": "GiftCardTransactionResponse",
  "description": "Gift card transaction response information.",
  "required": [
    "cardId",
    "id",
    "_self"
  ],
  "type": "object",
  "properties": {
    "cardId": {
      "type": "string",
      "description": "Gift card identification."
    },
    "id": {
      "type": "string",
      "description": "Transaction identification."
    },
    "_self": {
      "$ref": "#/components/schemas/Self"
    }
  }
}