Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 798 Bytes

File metadata and controls

24 lines (18 loc) · 798 Bytes

Komoju::CreateCustomerRequest

Properties

Name Type Description Notes
currency Currency [optional]
payment_details PaymentDetailsOnlyCreditCards [optional]
email String Customer's email address. [optional]
metadata Object Store any additional data you want to associate with the customer. The object's keys and values must be strings. Keys have a maximum length of 30 characters. Values have a maximum length of 2000 characters. [optional]

Example

require 'komoju-sdk'

instance = Komoju::CreateCustomerRequest.new(
  currency: null,
  payment_details: null,
  email: null,
  metadata: null
)