Class: PlexRubySDK::Models::Operations::GetLibraryDetailsRequest
- Inherits:
-
Object
- Object
- PlexRubySDK::Models::Operations::GetLibraryDetailsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/plex_ruby_sdk/models/operations/get_library_details_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(section_key: nil, include_details: nil) ⇒ GetLibraryDetailsRequest
constructor
A new instance of GetLibraryDetailsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(section_key: nil, include_details: nil) ⇒ GetLibraryDetailsRequest
Returns a new instance of GetLibraryDetailsRequest.
27 28 29 30 |
# File 'lib/plex_ruby_sdk/models/operations/get_library_details_request.rb', line 27 def initialize(section_key: nil, include_details: nil) @section_key = section_key @include_details = include_details end |
Instance Method Details
#==(other) ⇒ Object
32 33 34 35 36 37 |
# File 'lib/plex_ruby_sdk/models/operations/get_library_details_request.rb', line 32 def ==(other) return false unless other.is_a? self.class return false unless @section_key == other.section_key return false unless @include_details == other.include_details true end |