Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 2.59 KB

Customer.md

File metadata and controls

26 lines (22 loc) · 2.59 KB

Customer

Properties

Name Getter Setter Type Description Notes
id getId() setId($value) string The customer's unique ID.
created_at getCreatedAt() setCreatedAt($value) string The time when the customer was created, in RFC 3339 format.
updated_at getUpdatedAt() setUpdatedAt($value) string The time when the customer was last updated, in RFC 3339 format.
cards getCards() setCards($value) \SquareConnect\Model\Card[] The non-confidential details of the customer's cards on file. [optional]
given_name getGivenName() setGivenName($value) string The customer's given (i.e., first) name. [optional]
family_name getFamilyName() setFamilyName($value) string The customer's family (i.e., last) name. [optional]
nickname getNickname() setNickname($value) string The customer's nickname. [optional]
company_name getCompanyName() setCompanyName($value) string The name of the customer's company. [optional]
email_address getEmailAddress() setEmailAddress($value) string The customer's email address. [optional]
address getAddress() setAddress($value) \SquareConnect\Model\Address The customer's physical address. [optional]
phone_number getPhoneNumber() setPhoneNumber($value) string The customer's phone number. [optional]
reference_id getReferenceId() setReferenceId($value) string A second ID you can set to associate the customer with an entity in another system. [optional]
note getNote() setNote($value) string A note to associate with the customer. [optional]
preferences getPreferences() setPreferences($value) \SquareConnect\Model\CustomerPreferences The customer's preferences. [optional]
groups getGroups() setGroups($value) \SquareConnect\Model\CustomerGroupInfo[] The groups the customer belongs to. [optional]
creation_source getCreationSource() setCreationSource($value) string A creation source represents the method used to create the customer profile. [optional]

Note: All properties are protected and only accessed via getters and setters.

[Back to Model list] [Back to API list] [Back to README]