Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 1020 Bytes

CustomerObject.md

File metadata and controls

22 lines (17 loc) · 1020 Bytes

# CustomerObject

An object representing a customer with various properties, including addresses.

use Xendit\Invoice\CustomerObject;

Properties

Name Type Required Description Examples
id string The unique identifier for the customer. null
phone_number string The customer's phone number. null
given_names string The customer's given names or first names. null
surname string The customer's surname or last name. null
email string The customer's email address. null
mobile_number string The customer's mobile phone number. null
customer_id string An additional identifier for the customer. null
addresses array An array of addresses associated with the customer. null

[Back to README]