Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.32 KB

CreatePayee.md

File metadata and controls

38 lines (32 loc) · 1.32 KB

VeloPayments::CreatePayee

Properties

Name Type Description Notes
payee_id String [optional][readonly]
payor_refs Array<PayeePayorRefV3> [optional][readonly]
email String
remote_id String
type PayeeType
address CreatePayeeAddress
payment_channel CreatePaymentChannel [optional]
challenge Challenge [optional]
language String An IETF BCP 47 language code which has been configured for use within this Velo environment.<BR> See the /v1/supportedLanguages endpoint to list the available codes for an environment. [optional]
company Company [optional]
individual CreateIndividual [optional]

Example

require 'velopayments'

instance = VeloPayments::CreatePayee.new(
  payee_id: 2aa5d7e0-2ecb-403f-8494-1865ed0454e9,
  payor_refs: null,
  email: bob@example.com,
  remote_id: Remote ID,
  type: null,
  address: null,
  payment_channel: null,
  challenge: null,
  language: en-US,
  company: null,
  individual: null
)