Alokai

CustomerInput

An input object that assigns or updates customer attributes.

type CustomerInput = {
  date_of_birth?: InputMaybe<Scalars['String']['input']>;
  dob?: InputMaybe<Scalars['String']['input']>; /** The customer's email address. Required when creating a customer. */
  email?: InputMaybe<Scalars['String']['input']>; /** The customer's first name. */
  firstname?: InputMaybe<Scalars['String']['input']>; /** The customer's gender (Male - 1, Female - 2). */
  gender?: InputMaybe<Scalars['Int']['input']>; /** Indicates whether the customer is subscribed to the company's newsletter. */
  is_subscribed?: InputMaybe<Scalars['Boolean']['input']>; /** The customer's family name. */
  lastname?: InputMaybe<Scalars['String']['input']>; /** The customer's middle name. */
  middlename?: InputMaybe<Scalars['String']['input']>; /** The customer's password. */
  password?: InputMaybe<Scalars['String']['input']>; /** An honorific, such as Dr., Mr., or Mrs. */
  prefix?: InputMaybe<Scalars['String']['input']>; /** A value such as Sr., Jr., or III. */
  suffix?: InputMaybe<Scalars['String']['input']>; /** The customer's Tax/VAT number (for corporate customers). */
  taxvat?: InputMaybe<Scalars['String']['input']>;
};

Referenced Types

On this page