Skip to content

Commit

Permalink
Update OpenAPI for b292197fa5b67363a1531c535f6d9fbb2014e2be (#1180)
Browse files Browse the repository at this point in the history
Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
  • Loading branch information
stripe-openapi[bot] committed May 10, 2024
1 parent 2f82001 commit c6d13af
Showing 1 changed file with 159 additions and 0 deletions.
159 changes: 159 additions & 0 deletions api/openapi-spec/spec3.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -26079,6 +26079,9 @@
"merchandise_not_as_described": {
"$ref": "#/components/schemas/issuing_dispute_merchandise_not_as_described_evidence"
},
"no_valid_authorization": {
"$ref": "#/components/schemas/issuing_dispute_no_valid_authorization_evidence"
},
"not_received": {
"$ref": "#/components/schemas/issuing_dispute_not_received_evidence"
},
Expand All @@ -26092,6 +26095,7 @@
"duplicate",
"fraudulent",
"merchandise_not_as_described",
"no_valid_authorization",
"not_received",
"other",
"service_not_as_described"
Expand All @@ -26113,6 +26117,7 @@
"duplicate",
"fraudulent",
"merchandise_not_as_described",
"no_valid_authorization",
"not_received",
"other",
"service_not_as_described"
Expand Down Expand Up @@ -26229,6 +26234,46 @@
"additional_documentation"
]
},
"issuing_dispute_no_valid_authorization_evidence": {
"description": "",
"properties": {
"additional_documentation": {
"anyOf": [
{
"maxLength": 5000,
"type": "string"
},
{
"$ref": "#/components/schemas/file"
}
],
"description": "(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.",
"nullable": true,
"x-expansionResources": {
"oneOf": [
{
"$ref": "#/components/schemas/file"
}
]
}
},
"explanation": {
"description": "Explanation of why the cardholder is disputing this transaction.",
"maxLength": 5000,
"nullable": true,
"type": "string"
}
},
"required": [
"additional_documentation",
"explanation"
],
"title": "IssuingDisputeNoValidAuthorizationEvidence",
"type": "object",
"x-expandableFields": [
"additional_documentation"
]
},
"issuing_dispute_not_received_evidence": {
"description": "",
"properties": {
Expand Down Expand Up @@ -33909,6 +33954,15 @@
"description": "Contains information about card networks that can be used to process the payment.",
"nullable": true
},
"preferred_locales": {
"description": "EMV tag 5F2D. Preferred languages specified by the integrated circuit chip.",
"items": {
"maxLength": 5000,
"type": "string"
},
"nullable": true,
"type": "array"
},
"read_method": {
"description": "How card details were read in this transaction.",
"enum": [
Expand All @@ -33932,6 +33986,7 @@
"funding",
"last4",
"networks",
"preferred_locales",
"read_method"
],
"title": "payment_method_card_present",
Expand Down Expand Up @@ -35466,6 +35521,15 @@
"description": "Defines whether the authorized amount can be over-captured or not",
"type": "boolean"
},
"preferred_locales": {
"description": "EMV tag 5F2D. Preferred languages specified by the integrated circuit chip.",
"items": {
"maxLength": 5000,
"type": "string"
},
"nullable": true,
"type": "array"
},
"read_method": {
"description": "How card details were read in this transaction.",
"enum": [
Expand Down Expand Up @@ -35504,6 +35568,7 @@
"network",
"offline",
"overcapture_supported",
"preferred_locales",
"read_method",
"receipt"
],
Expand Down Expand Up @@ -105034,6 +105099,52 @@
],
"description": "Evidence provided when `reason` is 'merchandise_not_as_described'."
},
"no_valid_authorization": {
"anyOf": [
{
"properties": {
"additional_documentation": {
"anyOf": [
{
"type": "string"
},
{
"enum": [
""
],
"type": "string"
}
],
"description": "(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute."
},
"explanation": {
"anyOf": [
{
"maxLength": 1500,
"type": "string"
},
{
"enum": [
""
],
"type": "string"
}
],
"description": "Explanation of why the cardholder is disputing this transaction."
}
},
"title": "no_valid_authorization",
"type": "object"
},
{
"enum": [
""
],
"type": "string"
}
],
"description": "Evidence provided when `reason` is 'no_valid_authorization'."
},
"not_received": {
"anyOf": [
{
Expand Down Expand Up @@ -105196,6 +105307,7 @@
"duplicate",
"fraudulent",
"merchandise_not_as_described",
"no_valid_authorization",
"not_received",
"other",
"service_not_as_described"
Expand Down Expand Up @@ -105865,6 +105977,52 @@
],
"description": "Evidence provided when `reason` is 'merchandise_not_as_described'."
},
"no_valid_authorization": {
"anyOf": [
{
"properties": {
"additional_documentation": {
"anyOf": [
{
"type": "string"
},
{
"enum": [
""
],
"type": "string"
}
],
"description": "(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute."
},
"explanation": {
"anyOf": [
{
"maxLength": 1500,
"type": "string"
},
{
"enum": [
""
],
"type": "string"
}
],
"description": "Explanation of why the cardholder is disputing this transaction."
}
},
"title": "no_valid_authorization",
"type": "object"
},
{
"enum": [
""
],
"type": "string"
}
],
"description": "Evidence provided when `reason` is 'no_valid_authorization'."
},
"not_received": {
"anyOf": [
{
Expand Down Expand Up @@ -106027,6 +106185,7 @@
"duplicate",
"fraudulent",
"merchandise_not_as_described",
"no_valid_authorization",
"not_received",
"other",
"service_not_as_described"
Expand Down

0 comments on commit c6d13af

Please sign in to comment.