Class: CallRecorderApi::Model::GetProfileRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/call_recorder_api/model/get_profile_request.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_key) ⇒ GetProfileRequest

Returns a new instance of GetProfileRequest.



8
9
10
11
12
# File 'lib/call_recorder_api/model/get_profile_request.rb', line 8

def initialize(
    api_key
)
    @api_key = api_key
end

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



6
7
8
# File 'lib/call_recorder_api/model/get_profile_request.rb', line 6

def api_key
  @api_key
end

Instance Method Details

#to_sObject



14
15
16
17
18
# File 'lib/call_recorder_api/model/get_profile_request.rb', line 14

def to_s
    'GetProfileRequest{' +
        'api_key=' + api_key.to_s +
    '}'
end