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