Class: InstructionResponse
Instance Method Summary
collapse
Methods inherited from JSONable
#from_json!, #to_h, #to_json
Instance Method Details
#getId ⇒ Object
48
49
50
|
# File 'lib/Entities/instruction_response.rb', line 48
def getId
return @id
end
|
#getIsSuccess ⇒ Object
36
37
38
|
# File 'lib/Entities/instruction_response.rb', line 36
def getIsSuccess
return @isSuccess
end
|
#getPaymentInstructionToken ⇒ Object
52
53
54
|
# File 'lib/Entities/instruction_response.rb', line 52
def getPaymentInstructionToken
return @paymentInstructionToken
end
|
#getResponseCode ⇒ Object
44
45
46
|
# File 'lib/Entities/instruction_response.rb', line 44
def getResponseCode
return @responseCode
end
|
#getResponseSummary ⇒ Object
40
41
42
|
# File 'lib/Entities/instruction_response.rb', line 40
def getResponseSummary
return @responseSummary
end
|
#getValidationErrors ⇒ Object
32
33
34
|
# File 'lib/Entities/instruction_response.rb', line 32
def getValidationErrors
return @validationErrors
end
|
#Id=(id) ⇒ Object
21
22
23
|
# File 'lib/Entities/instruction_response.rb', line 21
def Id=(id)
@id = id
end
|
#IsSuccess=(isSuccess) ⇒ Object
9
10
11
|
# File 'lib/Entities/instruction_response.rb', line 9
def IsSuccess=(isSuccess)
@isSuccess = isSuccess
end
|
#PaymentInstructionToken(paymentInstructionToken) ⇒ Object
25
26
27
|
# File 'lib/Entities/instruction_response.rb', line 25
def PaymentInstructionToken(paymentInstructionToken)
@paymentInstructionToken = paymentInstructionToken
end
|
#responseCode=(responseCode) ⇒ Object
17
18
19
|
# File 'lib/Entities/instruction_response.rb', line 17
def responseCode=(responseCode)
@responseCode = responseCode
end
|
#ResponseSummary=(responseSummary) ⇒ Object
13
14
15
|
# File 'lib/Entities/instruction_response.rb', line 13
def ResponseSummary=(responseSummary)
@responseSummary = responseSummary
end
|
#ValidationErrors=(validationErrors) ⇒ Object
5
6
7
|
# File 'lib/Entities/instruction_response.rb', line 5
def ValidationErrors=(validationErrors)
@validationErrors = validationErrors
end
|