ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.531.4

This commit is contained in:
speakeasybot
2025-04-15 00:10:22 +00:00
parent 1be9c77a05
commit f1b7dcb619
2010 changed files with 41994 additions and 36602 deletions

View File

@@ -5,29 +5,32 @@
module PlexRubySDK
module Operations
module Models
module Operations
class GetTransientTokenRequest < ::Crystalline::FieldAugmented
extend T::Sig
class GetTransientTokenRequest
extend T::Sig
include Crystalline::MetadataFields
# `all` - This is the only supported `scope` parameter.
field :scope, ::PlexRubySDK::Operations::Scope, { 'query_param': { 'field_name': 'scope', 'style': 'form', 'explode': true } }
# `delegation` - This is the only supported `type` parameter.
field :type, ::PlexRubySDK::Operations::GetTransientTokenQueryParamType, { 'query_param': { 'field_name': 'type', 'style': 'form', 'explode': true } }
# `all` - This is the only supported `scope` parameter.
field :scope, Models::Operations::Scope, { 'query_param': { 'field_name': 'scope', 'style': 'form', 'explode': true } }
# `delegation` - This is the only supported `type` parameter.
field :type, Models::Operations::GetTransientTokenQueryParamType, { 'query_param': { 'field_name': 'type', 'style': 'form', 'explode': true } }
sig { params(scope: ::PlexRubySDK::Operations::Scope, type: ::PlexRubySDK::Operations::GetTransientTokenQueryParamType).void }
def initialize(scope: nil, type: nil)
@scope = scope
@type = type
end
sig { params(scope: Models::Operations::Scope, type: Models::Operations::GetTransientTokenQueryParamType).void }
def initialize(scope: nil, type: nil)
@scope = scope
@type = type
end
def ==(other)
return false unless other.is_a? self.class
return false unless @scope == other.scope
return false unless @type == other.type
true
def ==(other)
return false unless other.is_a? self.class
return false unless @scope == other.scope
return false unless @type == other.type
true
end
end
end
end