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