Class: PlexRubySDK::Models::Operations::GetLibrarySectionsAllMediaContainer

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(allow_sync: nil, art: nil, content: nil, identifier: nil, media_tag_prefix: nil, media_tag_version: nil, nocache: nil, offset: nil, size: nil, thumb: nil, title1: nil, title2: nil, total_size: nil, view_group: nil, library_section_id: nil, library_section_title: nil, library_section_uuid: nil, meta: nil, metadata: nil) ⇒ GetLibrarySectionsAllMediaContainer

Returns a new instance of GetLibrarySectionsAllMediaContainer.



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/plex_ruby_sdk/models/operations/get_library_sections_all_mediacontainer.rb', line 58

def initialize(allow_sync: nil, art: nil, content: nil, identifier: nil, media_tag_prefix: nil, media_tag_version: nil, nocache: nil, offset: nil, size: nil, thumb: nil, title1: nil, title2: nil, total_size: nil, view_group: nil, library_section_id: nil, library_section_title: nil, library_section_uuid: nil, meta: nil, metadata: nil)
  @allow_sync = allow_sync
  @art = art
  @content = content
  @identifier = identifier
  @media_tag_prefix = media_tag_prefix
  @media_tag_version = media_tag_version
  @nocache = nocache
  @offset = offset
  @size = size
  @thumb = thumb
  @title1 = title1
  @title2 = title2
  @total_size = total_size
  @view_group = view_group
  @library_section_id = library_section_id
  @library_section_title = library_section_title
  @library_section_uuid = library_section_uuid
  @meta = meta
  @metadata = 
end

Instance Method Details

#==(other) ⇒ Object



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/plex_ruby_sdk/models/operations/get_library_sections_all_mediacontainer.rb', line 80

def ==(other)
  return false unless other.is_a? self.class
  return false unless @allow_sync == other.allow_sync
  return false unless @art == other.art
  return false unless @content == other.content
  return false unless @identifier == other.identifier
  return false unless @media_tag_prefix == other.media_tag_prefix
  return false unless @media_tag_version == other.media_tag_version
  return false unless @nocache == other.nocache
  return false unless @offset == other.offset
  return false unless @size == other.size
  return false unless @thumb == other.thumb
  return false unless @title1 == other.title1
  return false unless @title2 == other.title2
  return false unless @total_size == other.total_size
  return false unless @view_group == other.view_group
  return false unless @library_section_id == other.library_section_id
  return false unless @library_section_title == other.library_section_title
  return false unless @library_section_uuid == other.library_section_uuid
  return false unless @meta == other.meta
  return false unless @metadata == other.
  true
end