commercetools · Schema

PaymentMethodInfo

Information about the payment method and PSP used for a payment.

CommerceComposable CommerceE-CommerceGraphQLRESTSDK

Properties

Name Type Description
paymentInterface string Identifier of the PSP or payment interface.
method string Payment method identifier (e.g., 'creditcard', 'paypal').
name object
View JSON Schema on GitHub

JSON Schema

commercetools-paymentmethodinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentMethodInfo",
  "title": "PaymentMethodInfo",
  "type": "object",
  "description": "Information about the payment method and PSP used for a payment.",
  "properties": {
    "paymentInterface": {
      "type": "string",
      "description": "Identifier of the PSP or payment interface."
    },
    "method": {
      "type": "string",
      "description": "Payment method identifier (e.g., 'creditcard', 'paypal')."
    },
    "name": {
      "$ref": "#/components/schemas/LocalizedString"
    }
  }
}