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