Class: CallRecorderApi::Model::GetMetaFilesResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status, meta_files) ⇒ GetMetaFilesResponse

Returns a new instance of GetMetaFilesResponse.



9
10
11
12
13
14
15
# File 'lib/call_recorder_api/model/get_meta_files_response.rb', line 9

def initialize(
    status,
    meta_files
)
    @status = status
    @meta_files = meta_files
end

Instance Attribute Details

#meta_filesObject

Returns the value of attribute meta_files.



7
8
9
# File 'lib/call_recorder_api/model/get_meta_files_response.rb', line 7

def meta_files
  @meta_files
end

#statusObject

Returns the value of attribute status.



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

def status
  @status
end

Instance Method Details

#to_sObject



17
18
19
20
21
22
# File 'lib/call_recorder_api/model/get_meta_files_response.rb', line 17

def to_s
    'GetMetaFilesResponse{' +
        'status=' + status.to_s + ', ' +
        'meta_files=' + meta_files.to_s +
    '}'
end