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

@@ -0,0 +1,28 @@
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
# typed: true
# frozen_string_literal: true
module OpenApiSDK
module Operations
class GetTopWatchedContentRequest < ::OpenApiSDK::Utils::FieldAugmented
extend T::Sig
# the library type (1 - movies, 2 - shows, 3 - music)
field :type, ::Integer, { 'query_param': { 'field_name': 'type', 'style': 'form', 'explode': true } }
# Adds the Guids object to the response
#
field :include_guids, T.nilable(::Integer), { 'query_param': { 'field_name': 'includeGuids', 'style': 'form', 'explode': true } }
sig { params(type: ::Integer, include_guids: T.nilable(::Integer)).void }
def initialize(type: nil, include_guids: nil)
@type = type
@include_guids = include_guids
end
end
end
end