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