Class: InstructionResponse

Inherits:
JSONable show all
Defined in:
lib/Entities/instruction_response.rb

Instance Method Summary collapse

Methods inherited from JSONable

#from_json!, #to_h, #to_json

Instance Method Details

#getIdObject



48
49
50
# File 'lib/Entities/instruction_response.rb', line 48

def getId
  return @id
end

#getIsSuccessObject



36
37
38
# File 'lib/Entities/instruction_response.rb', line 36

def getIsSuccess
  return @isSuccess
end

#getPaymentInstructionTokenObject



52
53
54
# File 'lib/Entities/instruction_response.rb', line 52

def getPaymentInstructionToken
  return @paymentInstructionToken
end

#getResponseCodeObject



44
45
46
# File 'lib/Entities/instruction_response.rb', line 44

def getResponseCode
  return @responseCode
end

#getResponseSummaryObject



40
41
42
# File 'lib/Entities/instruction_response.rb', line 40

def getResponseSummary
  return @responseSummary
end

#getValidationErrorsObject

Getters



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

ValidationError type



5
6
7
# File 'lib/Entities/instruction_response.rb', line 5

def ValidationErrors=(validationErrors) #ValidationError type
  @validationErrors = validationErrors
end