Skip to content

Commit

Permalink
OpenAPI Update (#756)
Browse files Browse the repository at this point in the history
Update OpenAPI for 664c6ac47231808fbc9ffb30902b9bb1f5f73a76

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
  • Loading branch information
stripe-openapi[bot] committed Apr 19, 2024
1 parent c4130ff commit b81b127
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
33 changes: 33 additions & 0 deletions embedded/openapi/spec3.beta.sdk.json
Expand Up @@ -150311,6 +150311,17 @@
},
"style": "deepObject"
},
{
"description": "A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.",
"in": "query",
"name": "ending_before",
"required": false,
"schema": {
"maxLength": 5000,
"type": "string"
},
"style": "form"
},
{
"description": "Specifies which fields in the response should be expanded.",
"explode": true,
Expand All @@ -150325,6 +150336,27 @@
"type": "array"
},
"style": "deepObject"
},
{
"description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.",
"in": "query",
"name": "limit",
"required": false,
"schema": {
"type": "integer"
},
"style": "form"
},
{
"description": "A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.",
"in": "query",
"name": "starting_after",
"required": false,
"schema": {
"maxLength": 5000,
"type": "string"
},
"style": "form"
}
],
"requestBody": {
Expand Down Expand Up @@ -150367,6 +150399,7 @@
"url": {
"description": "The URL where this list can be accessed.",
"maxLength": 5000,
"pattern": "^/v1/payment_method_configurations",
"type": "string"
}
},
Expand Down
33 changes: 33 additions & 0 deletions embedded/openapi/spec3.json
Expand Up @@ -113775,6 +113775,17 @@
},
"style": "deepObject"
},
{
"description": "A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.",
"in": "query",
"name": "ending_before",
"required": false,
"schema": {
"maxLength": 5000,
"type": "string"
},
"style": "form"
},
{
"description": "Specifies which fields in the response should be expanded.",
"explode": true,
Expand All @@ -113789,6 +113800,27 @@
"type": "array"
},
"style": "deepObject"
},
{
"description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.",
"in": "query",
"name": "limit",
"required": false,
"schema": {
"type": "integer"
},
"style": "form"
},
{
"description": "A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.",
"in": "query",
"name": "starting_after",
"required": false,
"schema": {
"maxLength": 5000,
"type": "string"
},
"style": "form"
}
],
"requestBody": {
Expand Down Expand Up @@ -113831,6 +113863,7 @@
"url": {
"description": "The URL where this list can be accessed.",
"maxLength": 5000,
"pattern": "^/v1/payment_method_configurations",
"type": "string"
}
},
Expand Down

0 comments on commit b81b127

Please sign in to comment.