Skip to content

Commit

Permalink
fix: update openapi spec
Browse files Browse the repository at this point in the history
  • Loading branch information
vspecky committed Oct 4, 2023
1 parent 1b35a96 commit b899ef3
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion openapi/openapi_spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -8080,6 +8080,14 @@
"merchant_name": {
"type": "string",
"nullable": true
},
"payment_type": {
"allOf": [
{
"$ref": "#/components/schemas/api_enums.PaymentType"
}
],
"nullable": true
}
}
},
Expand Down Expand Up @@ -8395,7 +8403,8 @@
"type": "object",
"required": [
"amount",
"currency"
"currency",
"payment_type"
],
"properties": {
"payment_id": {
Expand Down Expand Up @@ -8731,6 +8740,9 @@
"type": "string",
"description": "The business profile to use for this payment, if not passed the default business profile\nassociated with the merchant account will be used.",
"nullable": true
},
"payment_type": {
"$ref": "#/components/schemas/api_enums.PaymentType"
}
}
},
Expand Down Expand Up @@ -9070,6 +9082,9 @@
"type": "string",
"description": "The business profile to use for this payment, if not passed the default business profile\nassociated with the merchant account will be used.",
"nullable": true
},
"payment_type": {
"$ref": "#/components/schemas/api_enums.PaymentType"
}
}
},
Expand Down

0 comments on commit b899ef3

Please sign in to comment.