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,33 +5,36 @@
module PlexRubySDK
module Operations
module Models
module Operations
class Session < ::Crystalline::FieldAugmented
extend T::Sig
class Session
extend T::Sig
include Crystalline::MetadataFields
field :bandwidth, T.nilable(::Integer), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('bandwidth') } }
field :bandwidth, T.nilable(::Integer), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('bandwidth') } }
field :id, T.nilable(::String), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('id') } }
field :id, T.nilable(::String), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('id') } }
field :location, T.nilable(::String), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('location') } }
field :location, T.nilable(::String), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('location') } }
sig { params(bandwidth: T.nilable(::Integer), id: T.nilable(::String), location: T.nilable(::String)).void }
def initialize(bandwidth: nil, id: nil, location: nil)
@bandwidth = bandwidth
@id = id
@location = location
end
sig { params(bandwidth: T.nilable(::Integer), id: T.nilable(::String), location: T.nilable(::String)).void }
def initialize(bandwidth: nil, id: nil, location: nil)
@bandwidth = bandwidth
@id = id
@location = location
end
def ==(other)
return false unless other.is_a? self.class
return false unless @bandwidth == other.bandwidth
return false unless @id == other.id
return false unless @location == other.location
true
def ==(other)
return false unless other.is_a? self.class
return false unless @bandwidth == other.bandwidth
return false unless @id == other.id
return false unless @location == other.location
true
end
end
end
end