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