Class: PlexRubySDK::Models::Operations::GetMediaMetaDataDirector
- Inherits:
-
Object
- Object
- PlexRubySDK::Models::Operations::GetMediaMetaDataDirector
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/plex_ruby_sdk/models/operations/get_media_meta_data_director.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(filter: nil, id: nil, tag: nil, tag_key: nil, thumb: nil) ⇒ GetMediaMetaDataDirector
constructor
A new instance of GetMediaMetaDataDirector.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(filter: nil, id: nil, tag: nil, tag_key: nil, thumb: nil) ⇒ GetMediaMetaDataDirector
Returns a new instance of GetMediaMetaDataDirector.
29 30 31 32 33 34 35 |
# File 'lib/plex_ruby_sdk/models/operations/get_media_meta_data_director.rb', line 29 def initialize(filter: nil, id: nil, tag: nil, tag_key: nil, thumb: nil) @filter = filter @id = id @tag = tag @tag_key = tag_key @thumb = thumb end |
Instance Method Details
#==(other) ⇒ Object
37 38 39 40 41 42 43 44 45 |
# File 'lib/plex_ruby_sdk/models/operations/get_media_meta_data_director.rb', line 37 def ==(other) return false unless other.is_a? self.class return false unless @filter == other.filter return false unless @id == other.id return false unless @tag == other.tag return false unless @tag_key == other.tag_key return false unless @thumb == other.thumb true end |