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,37 +5,40 @@
module PlexRubySDK
module Operations
module Models
module Operations
class GetBandwidthStatisticsMediaContainer < ::Crystalline::FieldAugmented
extend T::Sig
class GetBandwidthStatisticsMediaContainer
extend T::Sig
include Crystalline::MetadataFields
field :account, T.nilable(T::Array[::PlexRubySDK::Operations::GetBandwidthStatisticsAccount]), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('Account') } }
field :account, T.nilable(T::Array[Models::Operations::GetBandwidthStatisticsAccount]), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('Account') } }
field :device, T.nilable(T::Array[::PlexRubySDK::Operations::GetBandwidthStatisticsDevice]), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('Device') } }
field :device, T.nilable(T::Array[Models::Operations::GetBandwidthStatisticsDevice]), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('Device') } }
field :size, T.nilable(::Integer), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('size') } }
field :size, T.nilable(::Integer), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('size') } }
field :statistics_bandwidth, T.nilable(T::Array[::PlexRubySDK::Operations::StatisticsBandwidth]), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('StatisticsBandwidth') } }
field :statistics_bandwidth, T.nilable(T::Array[Models::Operations::StatisticsBandwidth]), { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('StatisticsBandwidth') } }
sig { params(account: T.nilable(T::Array[::PlexRubySDK::Operations::GetBandwidthStatisticsAccount]), device: T.nilable(T::Array[::PlexRubySDK::Operations::GetBandwidthStatisticsDevice]), size: T.nilable(::Integer), statistics_bandwidth: T.nilable(T::Array[::PlexRubySDK::Operations::StatisticsBandwidth])).void }
def initialize(account: nil, device: nil, size: nil, statistics_bandwidth: nil)
@account = account
@device = device
@size = size
@statistics_bandwidth = statistics_bandwidth
end
sig { params(account: T.nilable(T::Array[Models::Operations::GetBandwidthStatisticsAccount]), device: T.nilable(T::Array[Models::Operations::GetBandwidthStatisticsDevice]), size: T.nilable(::Integer), statistics_bandwidth: T.nilable(T::Array[Models::Operations::StatisticsBandwidth])).void }
def initialize(account: nil, device: nil, size: nil, statistics_bandwidth: nil)
@account = account
@device = device
@size = size
@statistics_bandwidth = statistics_bandwidth
end
def ==(other)
return false unless other.is_a? self.class
return false unless @account == other.account
return false unless @device == other.device
return false unless @size == other.size
return false unless @statistics_bandwidth == other.statistics_bandwidth
true
def ==(other)
return false unless other.is_a? self.class
return false unless @account == other.account
return false unless @device == other.device
return false unless @size == other.size
return false unless @statistics_bandwidth == other.statistics_bandwidth
true
end
end
end
end