Skip to content

Commit

Permalink
Update services based on v431 of Stripe OpenApi SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Jul 25, 2023
1 parent 065b9ac commit 706eca0
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .latest-tag-stripe-openapi-sdk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v428
v431
71 changes: 70 additions & 1 deletion priv/openapi/spec3.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,9 @@
"nullable": true,
"type": "string"
},
"monthly_estimated_revenue": {
"$ref": "#/components/schemas/account_monthly_estimated_revenue"
},
"name": {
"description": "The customer-facing business name.",
"maxLength": 5000,
Expand Down Expand Up @@ -425,11 +428,15 @@
"title": "AccountBusinessProfile",
"type": "object",
"x-expandableFields": [
"monthly_estimated_revenue",
"support_address"
],
"x-stripeResource": {
"class_name": "BusinessProfile",
"in_class": "account"
"in_class": "account",
"inner_classes": [
"account_monthly_estimated_revenue"
]
}
},
"account_capabilities": {
Expand Down Expand Up @@ -1187,6 +1194,30 @@
"in_package": ""
}
},
"account_monthly_estimated_revenue": {
"description": "",
"properties": {
"amount": {
"description": "A non-negative integer representing how much to charge in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).",
"type": "integer"
},
"currency": {
"description": "Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).",
"type": "string"
}
},
"required": [
"amount",
"currency"
],
"title": "AccountMonthlyEstimatedRevenue",
"type": "object",
"x-expandableFields": [],
"x-stripeResource": {
"class_name": "MonthlyEstimatedRevenue",
"in_class": "account_business_profile"
}
},
"account_payments_settings": {
"description": "",
"properties": {
Expand Down Expand Up @@ -52486,6 +52517,25 @@
"maxLength": 4,
"type": "string"
},
"monthly_estimated_revenue": {
"description": "An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India.",
"properties": {
"amount": {
"description": "A non-negative integer representing how much to charge in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).",
"type": "integer"
},
"currency": {
"description": "Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).",
"type": "string"
}
},
"required": [
"amount",
"currency"
],
"title": "monthly_estimated_revenue_specs",
"type": "object"
},
"name": {
"description": "The customer-facing business name.",
"maxLength": 5000,
Expand Down Expand Up @@ -54236,6 +54286,25 @@
"maxLength": 4,
"type": "string"
},
"monthly_estimated_revenue": {
"description": "An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India.",
"properties": {
"amount": {
"description": "A non-negative integer representing how much to charge in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).",
"type": "integer"
},
"currency": {
"description": "Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).",
"type": "string"
}
},
"required": [
"amount",
"currency"
],
"title": "monthly_estimated_revenue_specs",
"type": "object"
},
"name": {
"description": "The customer-facing business name.",
"maxLength": 5000,
Expand Down

0 comments on commit 706eca0

Please sign in to comment.