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