Class: PlexRubySDK::Models::Operations::GetActorsLibraryDirectory

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(fast_key: nil, key: nil, thumb: nil, title: nil) ⇒ GetActorsLibraryDirectory

Returns a new instance of GetActorsLibraryDirectory.



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

def initialize(fast_key: nil, key: nil, thumb: nil, title: nil)
  @fast_key = fast_key
  @key = key
  @thumb = thumb
  @title = title
end

Instance Method Details

#==(other) ⇒ Object



34
35
36
37
38
39
40
41
# File 'lib/plex_ruby_sdk/models/operations/get_actors_library_directory.rb', line 34

def ==(other)
  return false unless other.is_a? self.class
  return false unless @fast_key == other.fast_key
  return false unless @key == other.key
  return false unless @thumb == other.thumb
  return false unless @title == other.title
  true
end