Class: CallRecorderApi::Model::UpdateProfileImgRequest
- Inherits:
 - 
      Object
      
        
- Object
 - CallRecorderApi::Model::UpdateProfileImgRequest
 
 
- Defined in:
 - lib/call_recorder_api/model/update_profile_img_request.rb
 
Instance Attribute Summary collapse
- 
  
    
      #api_key  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute api_key.
 - 
  
    
      #file  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute file.
 
Instance Method Summary collapse
- 
  
    
      #initialize(api_key, file)  ⇒ UpdateProfileImgRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UpdateProfileImgRequest.
 - #to_s ⇒ Object
 
Constructor Details
#initialize(api_key, file) ⇒ UpdateProfileImgRequest
Returns a new instance of UpdateProfileImgRequest.
      9 10 11 12 13 14 15  | 
    
      # File 'lib/call_recorder_api/model/update_profile_img_request.rb', line 9 def initialize( api_key, file ) @api_key = api_key @file = file end  | 
  
Instance Attribute Details
#api_key ⇒ Object
Returns the value of attribute api_key.
      6 7 8  | 
    
      # File 'lib/call_recorder_api/model/update_profile_img_request.rb', line 6 def api_key @api_key end  | 
  
#file ⇒ Object
Returns the value of attribute file.
      7 8 9  | 
    
      # File 'lib/call_recorder_api/model/update_profile_img_request.rb', line 7 def file @file end  | 
  
Instance Method Details
#to_s ⇒ Object
      17 18 19 20 21 22  | 
    
      # File 'lib/call_recorder_api/model/update_profile_img_request.rb', line 17 def to_s 'UpdateProfileImgRequest{' + 'api_key=' + api_key.to_s + ', ' + 'file=' + file.to_s + '}' end  |