mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 20:57:45 +00:00
27 lines
570 B
Ruby
27 lines
570 B
Ruby
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
|
|
module PlexRubySDK
|
|
module Operations
|
|
|
|
|
|
class MediaGuid < ::PlexRubySDK::Utils::FieldAugmented
|
|
extend T::Sig
|
|
|
|
# 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
|
|
end
|
|
end
|
|
end
|