Class: PlexRubySDK::Models::Operations::GetMediaMetaDataCountry

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/plex_ruby_sdk/models/operations/get_media_meta_data_country.rb

Overview

The filter query string for country media items.

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(filter: nil, id: nil, tag: nil) ⇒ GetMediaMetaDataCountry

Returns a new instance of GetMediaMetaDataCountry.



27
28
29
30
31
# File 'lib/plex_ruby_sdk/models/operations/get_media_meta_data_country.rb', line 27

def initialize(filter: nil, id: nil, tag: nil)
  @filter = filter
  @id = id
  @tag = tag
end

Instance Method Details

#==(other) ⇒ Object



33
34
35
36
37
38
39
# File 'lib/plex_ruby_sdk/models/operations/get_media_meta_data_country.rb', line 33

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
  true
end