Skip to content

Commit

Permalink
Update OpenAPI specification
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Aug 23, 2024
1 parent 65d4b22 commit ca6b9df
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
14 changes: 14 additions & 0 deletions openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -46625,6 +46625,18 @@
"payment_pages_checkout_session_collected_information": {
"description": "",
"properties": {
"email": {
"description": "Customer’s email for this Checkout Session",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"phone": {
"description": "Customer’s phone number for this Checkout Session",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"shipping_details": {
"anyOf": [
{
Expand All @@ -46636,6 +46648,8 @@
}
},
"required": [
"email",
"phone",
"shipping_details"
],
"title": "PaymentPagesCheckoutSessionCollectedInformation",
Expand Down
12 changes: 12 additions & 0 deletions openapi/spec3.beta.sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43316,12 +43316,24 @@ components:
payment_pages_checkout_session_collected_information:
description: ''
properties:
email:
description: Customer’s email for this Checkout Session
maxLength: 5000
nullable: true
type: string
phone:
description: Customer’s phone number for this Checkout Session
maxLength: 5000
nullable: true
type: string
shipping_details:
anyOf:
- $ref: '#/components/schemas/shipping'
description: Shipping information for this Checkout Session.
nullable: true
required:
- email
- phone
- shipping_details
title: PaymentPagesCheckoutSessionCollectedInformation
type: object
Expand Down

0 comments on commit ca6b9df

Please sign in to comment.