class EbanqApi::BeneficiaryCustomer

This class represents an beneficiary customer functional of Ebanq REST Api for owt request.

Attributes

Attributes

address[RW]
iban[RW]
name[RW]

Public Class Methods

new(name = '', address = '', iban = '') click to toggle source
# File lib/ebanq_api/owt/beneficiary_customer.rb, line 19
def initialize(name = '', address = '', iban = '')
  @name = name
  @address = address
  @iban = iban
end