Skip to content

Commit

Permalink
OpenAPI Update (#555)
Browse files Browse the repository at this point in the history
Update OpenAPI for 59de058bf25238dbe36113c916f9b07fae7231ca

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
  • Loading branch information
stripe-openapi[bot] committed Dec 7, 2023
1 parent 44b4562 commit 80181eb
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
29 changes: 28 additions & 1 deletion embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -36696,6 +36696,12 @@
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"transfer_group": {
"description": "A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.",
"maxLength": 5000,
"nullable": true,
"type": "string"
}
},
"required": [
Expand All @@ -36704,7 +36710,8 @@
"metadata",
"setup_future_usage",
"statement_descriptor",
"statement_descriptor_suffix"
"statement_descriptor_suffix",
"transfer_group"
],
"title": "PaymentLinksResourcePaymentIntentData",
"type": "object",
Expand Down Expand Up @@ -137616,6 +137623,11 @@
"description": "Provides information about the charge that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that's set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.",
"maxLength": 22,
"type": "string"
},
"transfer_group": {
"description": "A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.",
"maxLength": 5000,
"type": "string"
}
},
"title": "payment_intent_data_params",
Expand Down Expand Up @@ -138882,6 +138894,21 @@
}
],
"description": "Provides information about the charge that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that's set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor."
},
"transfer_group": {
"anyOf": [
{
"maxLength": 5000,
"type": "string"
},
{
"enum": [
""
],
"type": "string"
}
],
"description": "A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/connect/separate-charges-and-transfers) for details."
}
},
"title": "payment_intent_data_update_params",
Expand Down
24 changes: 24 additions & 0 deletions embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -23574,6 +23574,12 @@
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"transfer_group": {
"description": "A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.",
"maxLength": 5000,
"nullable": true,
"type": "string"
}
},
"required": [
Expand Down Expand Up @@ -100034,6 +100040,10 @@
"statement_descriptor_suffix": {
"maxLength": 22,
"type": "string"
},
"transfer_group": {
"maxLength": 5000,
"type": "string"
}
},
"title": "payment_intent_data_params",
Expand Down Expand Up @@ -101164,6 +101174,20 @@
"type": "string"
}
]
},
"transfer_group": {
"anyOf": [
{
"maxLength": 5000,
"type": "string"
},
{
"enum": [
""
],
"type": "string"
}
]
}
},
"title": "payment_intent_data_update_params",
Expand Down

0 comments on commit 80181eb

Please sign in to comment.