Unified.to · Schema

AccountingContactPaymentMethod

IntegrationsUnified API

Properties

Name Type Description
default boolean
id string
name string
type string
View JSON Schema on GitHub

JSON Schema

unified-to-accountingcontactpaymentmethod-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingContactPaymentMethod",
  "title": "AccountingContactPaymentMethod",
  "properties": {
    "default": {
      "type": "boolean"
    },
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "enum": [
        "ACH",
        "ALIPAY",
        "CARD",
        "GIROPAY",
        "IDEAL",
        "OTHER",
        "PAYPAL",
        "WIRE",
        "CHECK"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}