Skip to content

Commit

Permalink
OpenAPI Update (#793)
Browse files Browse the repository at this point in the history
Update OpenAPI for 4e334fdc857c597ec98685c18dd7e1aaa66dcdef

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
  • Loading branch information
stripe-openapi[bot] committed May 2, 2024
1 parent fe564e1 commit dbe9b56
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 8 deletions.
36 changes: 32 additions & 4 deletions embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -15560,13 +15560,16 @@
"card": {
"$ref": "#/components/schemas/dispute_payment_method_details_card"
},
"paypal": {
"$ref": "#/components/schemas/dispute_payment_method_details_paypal"
},
"type": {
"description": "Payment method type.",
"enum": [
"card"
"card",
"paypal"
],
"type": "string",
"x-stripeBypassValidation": true
"type": "string"
}
},
"required": [
Expand All @@ -15575,7 +15578,8 @@
"title": "DisputePaymentMethodDetails",
"type": "object",
"x-expandableFields": [
"card"
"card",
"paypal"
]
},
"dispute_payment_method_details_card": {
Expand All @@ -15601,6 +15605,30 @@
"type": "object",
"x-expandableFields": []
},
"dispute_payment_method_details_paypal": {
"description": "",
"properties": {
"case_id": {
"description": "The ID of the dispute in PayPal.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"reason_code": {
"description": "The reason for the dispute as defined by PayPal",
"maxLength": 5000,
"nullable": true,
"type": "string"
}
},
"required": [
"case_id",
"reason_code"
],
"title": "DisputePaymentMethodDetailsPaypal",
"type": "object",
"x-expandableFields": []
},
"email_sent": {
"description": "",
"properties": {
Expand Down
32 changes: 28 additions & 4 deletions embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -11079,13 +11079,16 @@
"card": {
"$ref": "#/components/schemas/dispute_payment_method_details_card"
},
"paypal": {
"$ref": "#/components/schemas/dispute_payment_method_details_paypal"
},
"type": {
"description": "Payment method type.",
"enum": [
"card"
"card",
"paypal"
],
"type": "string",
"x-stripeBypassValidation": true
"type": "string"
}
},
"required": [
Expand All @@ -11094,7 +11097,8 @@
"title": "DisputePaymentMethodDetails",
"type": "object",
"x-expandableFields": [
"card"
"card",
"paypal"
]
},
"dispute_payment_method_details_card": {
Expand All @@ -11119,6 +11123,26 @@
"type": "object",
"x-expandableFields": []
},
"dispute_payment_method_details_paypal": {
"description": "",
"properties": {
"case_id": {
"description": "The ID of the dispute in PayPal.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"reason_code": {
"description": "The reason for the dispute as defined by PayPal",
"maxLength": 5000,
"nullable": true,
"type": "string"
}
},
"title": "DisputePaymentMethodDetailsPaypal",
"type": "object",
"x-expandableFields": []
},
"email_sent": {
"description": "",
"properties": {
Expand Down

0 comments on commit dbe9b56

Please sign in to comment.