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