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,27 +5,30 @@
module PlexRubySDK
module Operations
module Models
module Operations
class MediaGuid < ::Crystalline::FieldAugmented
extend T::Sig
class MediaGuid
extend T::Sig
include Crystalline::MetadataFields
# Can be one of the following formats:
# imdb://tt13015952, tmdb://2434012, tvdb://7945991
#
field :id, ::String, { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('id') } }
# Can be one of the following formats:
# imdb://tt13015952, tmdb://2434012, tvdb://7945991
#
field :id, ::String, { 'format_json': { 'letter_case': ::PlexRubySDK::Utils.field_name('id') } }
sig { params(id: ::String).void }
def initialize(id: nil)
@id = id
end
sig { params(id: ::String).void }
def initialize(id: nil)
@id = id
end
def ==(other)
return false unless other.is_a? self.class
return false unless @id == other.id
true
def ==(other)
return false unless other.is_a? self.class
return false unless @id == other.id
true
end
end
end
end