Class: PlexRubySDK::Models::Operations::DeleteLibraryRequest
- Inherits:
-
Object
- Object
- PlexRubySDK::Models::Operations::DeleteLibraryRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/plex_ruby_sdk/models/operations/deletelibrary_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(section_key: nil) ⇒ DeleteLibraryRequest
constructor
A new instance of DeleteLibraryRequest.
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 |