ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.314.2

This commit is contained in:
speakeasybot
2024-06-22 00:11:30 +00:00
parent ed203455dd
commit 56086a732d
93 changed files with 2044 additions and 372 deletions

View File

@@ -13,11 +13,15 @@ module OpenApiSDK
# the id of the library item to return the children of.
field :rating_key, ::Float, { 'path_param': { 'field_name': 'ratingKey', 'style': 'simple', 'explode': false } }
# Adds additional elements to the response. Supported types are (Stream)
#
field :include_elements, T.nilable(::String), { 'query_param': { 'field_name': 'includeElements', 'style': 'form', 'explode': true } }
sig { params(rating_key: ::Float).void }
def initialize(rating_key: nil)
sig { params(rating_key: ::Float, include_elements: T.nilable(::String)).void }
def initialize(rating_key: nil, include_elements: nil)
@rating_key = rating_key
@include_elements = include_elements
end
end
end