diff --git a/openapi/spec3.beta.sdk.json b/openapi/spec3.beta.sdk.json index 59ba1da3..e0ef2d43 100644 --- a/openapi/spec3.beta.sdk.json +++ b/openapi/spec3.beta.sdk.json @@ -57629,20 +57629,6 @@ "trial_end" ], "x-stripeOperations": [ - { - "method_name": "list", - "method_on": "collection", - "method_type": "list", - "operation": "get", - "path": "/v1/quote_phases" - }, - { - "method_name": "list", - "method_on": "service", - "method_type": "list", - "operation": "get", - "path": "/v1/quote_phases" - }, { "method_name": "retrieve", "method_on": "service", @@ -57660,7 +57646,6 @@ ], "x-stripeResource": { "class_name": "QuotePhase", - "has_collection_class": true, "in_package": "" } }, @@ -184022,147 +184007,6 @@ } } }, - "/v1/quote_phases": { - "get": { - "description": "

Returns a list of quote phases.

", - "operationId": "GetQuotePhases", - "parameters": [ - { - "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": { - "type": "string" - }, - "style": "form" - }, - { - "description": "Specifies which fields in the response should be expanded.", - "explode": true, - "in": "query", - "name": "expand", - "required": false, - "schema": { - "items": { - "maxLength": 5000, - "type": "string" - }, - "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": "The ID of the quote whose phases will be retrieved.", - "in": "query", - "name": "quote", - "required": true, - "schema": { - "maxLength": 5000, - "type": "string" - }, - "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": { - "type": "string" - }, - "style": "form" - } - ], - "requestBody": { - "content": { - "application/x-www-form-urlencoded": { - "encoding": {}, - "schema": { - "additionalProperties": false, - "properties": {}, - "type": "object" - } - } - }, - "required": false - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "description": "", - "properties": { - "data": { - "items": { - "$ref": "#/components/schemas/quote_phase" - }, - "type": "array" - }, - "has_more": { - "description": "True if this list has another page of items after this one that can be fetched.", - "type": "boolean" - }, - "object": { - "description": "String representing the object's type. Objects of the same type share the same value. Always has the value `list`.", - "enum": [ - "list" - ], - "type": "string" - }, - "url": { - "description": "The URL where this list can be accessed.", - "maxLength": 5000, - "pattern": "^/v1/quote_phases", - "type": "string" - } - }, - "required": [ - "data", - "has_more", - "object", - "url" - ], - "title": "QuotesResourcePhaseList", - "type": "object", - "x-expandableFields": [ - "data" - ], - "x-stripeMostCommon": [ - "data", - "has_more", - "object", - "url" - ] - } - } - }, - "description": "Successful response." - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/error" - } - } - }, - "description": "Error response." - } - } - } - }, "/v1/quote_phases/{quote_phase}": { "get": { "description": "

Retrieves the quote phase with the given ID.

", diff --git a/openapi/spec3.beta.sdk.yaml b/openapi/spec3.beta.sdk.yaml index 00504c5c..08f290e5 100644 --- a/openapi/spec3.beta.sdk.yaml +++ b/openapi/spec3.beta.sdk.yaml @@ -52738,16 +52738,6 @@ components: - trial - trial_end x-stripeOperations: - - method_name: list - method_on: collection - method_type: list - operation: get - path: /v1/quote_phases - - method_name: list - method_on: service - method_type: list - operation: get - path: /v1/quote_phases - method_name: retrieve method_on: service method_type: retrieve @@ -52760,7 +52750,6 @@ components: path: '/v1/quote_phases/{quote_phase}/line_items' x-stripeResource: class_name: QuotePhase - has_collection_class: true in_package: '' quote_preview_invoice: description: >- @@ -173955,121 +173944,6 @@ paths: schema: $ref: '#/components/schemas/error' description: Error response. - /v1/quote_phases: - get: - description:

Returns a list of quote phases.

- operationId: GetQuotePhases - parameters: - - 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: - type: string - style: form - - description: Specifies which fields in the response should be expanded. - explode: true - in: query - name: expand - required: false - schema: - items: - maxLength: 5000 - type: string - 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: The ID of the quote whose phases will be retrieved. - in: query - name: quote - required: true - schema: - maxLength: 5000 - type: string - 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: - type: string - style: form - requestBody: - content: - application/x-www-form-urlencoded: - encoding: {} - schema: - additionalProperties: false - properties: {} - type: object - required: false - responses: - '200': - content: - application/json: - schema: - description: '' - properties: - data: - items: - $ref: '#/components/schemas/quote_phase' - type: array - has_more: - description: >- - True if this list has another page of items after this one - that can be fetched. - type: boolean - object: - description: >- - String representing the object's type. Objects of the same - type share the same value. Always has the value `list`. - enum: - - list - type: string - url: - description: The URL where this list can be accessed. - maxLength: 5000 - pattern: ^/v1/quote_phases - type: string - required: - - data - - has_more - - object - - url - title: QuotesResourcePhaseList - type: object - x-expandableFields: - - data - x-stripeMostCommon: - - data - - has_more - - object - - url - description: Successful response. - default: - content: - application/json: - schema: - $ref: '#/components/schemas/error' - description: Error response. '/v1/quote_phases/{quote_phase}': get: description:

Retrieves the quote phase with the given ID.