mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 20:57:45 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.531.4
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user