Class: PlexRubySDK::Models::Operations::GetUsersResponseBody
- Inherits:
 - 
      Object
      
        
- Object
 - PlexRubySDK::Models::Operations::GetUsersResponseBody
 
 
- Extended by:
 - T::Sig
 
- Includes:
 - Crystalline::MetadataFields
 
- Defined in:
 - lib/plex_ruby_sdk/models/operations/get_users_responsebody.rb
 
Overview
Successful response with media container data in XML
Instance Method Summary collapse
- #==(other) ⇒ Object
 - 
  
    
      #initialize(media_container: nil)  ⇒ GetUsersResponseBody 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GetUsersResponseBody.
 
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(media_container: nil) ⇒ GetUsersResponseBody
Returns a new instance of GetUsersResponseBody.
      24 25 26  | 
    
      # File 'lib/plex_ruby_sdk/models/operations/get_users_responsebody.rb', line 24 def initialize(media_container: nil) @media_container = media_container end  | 
  
Instance Method Details
#==(other) ⇒ Object
      28 29 30 31 32  | 
    
      # File 'lib/plex_ruby_sdk/models/operations/get_users_responsebody.rb', line 28 def ==(other) return false unless other.is_a? self.class return false unless @media_container == other.media_container true end  |