Sha256: 4198e6f153dc36f6daaf6815726fd4730a1a1abf9b2da411fa034b02fda62490

Contents?: true

Size: 1.1 KB

Versions: 3

Compression:

Stored size: 1.1 KB

Contents

require_relative '../Helpers/jso_nable'
class InstructionResponse < JSONable


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

  def IsSuccess=(isSuccess)
    @isSuccess = isSuccess
  end

  def ResponseSummary=(responseSummary)
    @responseSummary = responseSummary
  end

  def responseCode=(responseCode)
    @responseCode = responseCode
  end

  def Id=(id)
    @id = id
  end

  def PaymentInstructionToken(paymentInstructionToken)
    @paymentInstructionToken = paymentInstructionToken
  end



  #Getters
  def getValidationErrors
    return @validationErrors
  end

  def getIsSuccess
    return @isSuccess
  end

  def getResponseSummary
    return @responseSummary
  end

  def getResponseCode
    return @responseCode
  end

  def getId
    return @id
  end

  def getPaymentInstructionToken
    return @paymentInstructionToken
  end

  #private ValidationError ValidationErrors;
  #private boolean IsSuccess;
  #private String ResponseSummary;
  #private String ResponseCode;
  #private String Id;
  #private String PaymentInstructionToken;

end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
CroemincRubyGem-0.1.2 lib/Entities/instruction_response.rb
MetropagoRubyGem-0.1.1 lib/Entities/instruction_response.rb
MetropagoRubyGem-0.1.0 lib/Entities/instruction_response.rb