Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 646 Bytes

Merchant.md

File metadata and controls

24 lines (18 loc) · 646 Bytes

Synctera::Merchant

Properties

Name Type Description Notes
address Address1
email String Merchant's email [optional]
name String Merchant's name
phone_number String Merchant's phone number with country code in E.164 format. Must have a valid country code. Area code and local phone number are not validated. [optional]

Example

require 'synctera'

instance = Synctera::Merchant.new(
  address: null,
  email: alice@example.com,
  name: null,
  phone_number: +14374570680
)