Class: PlexRubySDK::Models::Operations::DeleteLibraryRequest

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(section_key: nil) ⇒ DeleteLibraryRequest

Returns a new instance of DeleteLibraryRequest.



23
24
25
# File 'lib/plex_ruby_sdk/models/operations/deletelibrary_request.rb', line 23

def initialize(section_key: nil)
  @section_key = section_key
end

Instance Method Details

#==(other) ⇒ Object



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

def ==(other)
  return false unless other.is_a? self.class
  return false unless @section_key == other.section_key
  true
end