Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenAPI Update #901

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion embedded/openapi/fixtures3.json
Original file line number Diff line number Diff line change
Expand Up @@ -4173,7 +4173,8 @@
"tax_code": "txcd_92010001"
},
"tax_date": 1234567890,
"type": "transaction"
"type": "transaction",
"posted_at": 2008020787
},
"tax.transaction_line_item": {
"amount": 1499,
Expand Down
11 changes: 11 additions & 0 deletions embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -63448,6 +63448,11 @@
],
"type": "string"
},
"posted_at": {
"description": "The Unix timestamp representing when the tax liability is assumed or reduced.",
"format": "unix-time",
"type": "integer"
},
"reference": {
"description": "A custom unique identifier, such as 'myOrder_123'.",
"maxLength": 5000,
Expand Down Expand Up @@ -63503,6 +63508,7 @@
"livemode",
"metadata",
"object",
"posted_at",
"reference",
"reversal",
"ship_from_details",
Expand Down Expand Up @@ -190381,6 +190387,11 @@
"description": "Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.",
"type": "object"
},
"posted_at": {
"description": "The Unix timestamp representing when the tax liability is assumed or reduced, which determines the liability posting period and handling in tax liability reports. The timestamp must fall within the `tax_date` and the current time, unless the `tax_date` is scheduled in advance. Defaults to the current time.",
"format": "unix-time",
"type": "integer"
},
"reference": {
"description": "A custom order or sale identifier, such as 'myOrder_123'. Must be unique across all transactions, including reversals.",
"maxLength": 500,
Expand Down
11 changes: 11 additions & 0 deletions embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -44157,6 +44157,11 @@
],
"type": "string"
},
"posted_at": {
"description": "The Unix timestamp representing when the tax liability is assumed or reduced.",
"format": "unix-time",
"type": "integer"
},
"reference": {
"description": "A custom unique identifier, such as 'myOrder_123'.",
"maxLength": 5000,
Expand Down Expand Up @@ -44210,6 +44215,7 @@
"id",
"livemode",
"object",
"posted_at",
"reference",
"tax_date",
"type"
Expand Down Expand Up @@ -145028,6 +145034,11 @@
"description": "Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.",
"type": "object"
},
"posted_at": {
"description": "The Unix timestamp representing when the tax liability is assumed or reduced, which determines the liability posting period and handling in tax liability reports. The timestamp must fall within the `tax_date` and the current time, unless the `tax_date` is scheduled in advance. Defaults to the current time.",
"format": "unix-time",
"type": "integer"
},
"reference": {
"description": "A custom order or sale identifier, such as 'myOrder_123'. Must be unique across all transactions, including reversals.",
"maxLength": 500,
Expand Down
Loading