Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.23 KB

MerchantDetails.md

File metadata and controls

30 lines (24 loc) · 1.23 KB

WorldnetPayments::MerchantDetails

Properties

Name Type Description Notes
name String Merchant's DBA (Doing Business As). This information will appear on transaction receipts.
mcc String Merchant Category Code. It is a four-digit number listed in ISO 18245 for retail financial services. An MCC is used to classify a business by the types of goods or services it provides.
phone String Merchant's phone number. This information will appear on transaction receipts.
email String Merchant's email address. This information will appear on transaction receipts.
website String Merchant's web page. This information will appear on transaction receipts. [optional]
address Address [optional]
merchant_volume_limits Array<MerchantLevelLimit> List of merchant-level volume limits. [optional]

Example

require 'worldnet_payments'

instance = WorldnetPayments::MerchantDetails.new(
  name: null,
  mcc: null,
  phone: null,
  email: null,
  website: null,
  address: null,
  merchant_volume_limits: null
)