Class: ResponseModel
Instance Method Summary
collapse
Methods inherited from JSONable
#from_json!, #to_h, #to_json
Instance Method Details
#APIVersion=(aPIVersion) ⇒ Object
4
5
6
|
# File 'lib/Entities/response_model.rb', line 4
def APIVersion=(aPIVersion)
@aPIVersion = aPIVersion
end
|
#Errors=(errors) ⇒ Object
16
17
18
|
# File 'lib/Entities/response_model.rb', line 16
def Errors=(errors)
@errors = errors
end
|
#getAPIVersion ⇒ Object
23
24
25
|
# File 'lib/Entities/response_model.rb', line 23
def getAPIVersion
return @aPIVersion
end
|
#getErrors ⇒ Object
35
36
37
|
# File 'lib/Entities/response_model.rb', line 35
def getErrors
return @errors
end
|
#getIdentification ⇒ Object
31
32
33
|
# File 'lib/Entities/response_model.rb', line 31
def getIdentification
return @identification
end
|
#getResponseMessage ⇒ Object
27
28
29
|
# File 'lib/Entities/response_model.rb', line 27
def getResponseMessage
return @responseMessage
end
|
#Identification=(identification) ⇒ Object
12
13
14
|
# File 'lib/Entities/response_model.rb', line 12
def Identification=(identification)
@identification = identification
end
|
#ResponseMessage=(responseMessage) ⇒ Object
8
9
10
|
# File 'lib/Entities/response_model.rb', line 8
def ResponseMessage=(responseMessage)
@responseMessage = responseMessage
end
|