CustomerAddressInput
Contains details about a billing or shipping address.
type CustomerAddressInput = {
city?: InputMaybe<Scalars['String']['input']>; /** The customer's company. */
company?: InputMaybe<Scalars['String']['input']>; /** The two-letter code representing the customer's country. */
country_code?: InputMaybe<CountryCodeEnum>;
country_id?: InputMaybe<CountryCodeEnum>;
custom_attributes?: InputMaybe<Array<InputMaybe<CustomerAddressAttributeInput>>>; /** Custom attributes assigned to the customer address. */
custom_attributesV2?: InputMaybe<Array<InputMaybe<AttributeValueInput>>>; /** Indicates whether the address is the default billing address. */
default_billing?: InputMaybe<Scalars['Boolean']['input']>; /** Indicates whether the address is the default shipping address. */
default_shipping?: InputMaybe<Scalars['Boolean']['input']>; /** The customer's fax number. */
fax?: InputMaybe<Scalars['String']['input']>; /** The first name of the person associated with the billing/shipping address. */
firstname?: InputMaybe<Scalars['String']['input']>; /** The family name of the person associated with the billing/shipping address. */
lastname?: InputMaybe<Scalars['String']['input']>; /** The middle name of the person associated with the billing/shipping address. */
middlename?: InputMaybe<Scalars['String']['input']>; /** The customer's ZIP or postal code. */
postcode?: InputMaybe<Scalars['String']['input']>; /** An honorific, such as Dr., Mr., or Mrs. */
prefix?: InputMaybe<Scalars['String']['input']>; /** An object containing the region name, region code, and region ID. */
region?: InputMaybe<CustomerAddressRegionInput>; /** An array of strings that define the street number and name. */
street?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>; /** A value such as Sr., Jr., or III. */
suffix?: InputMaybe<Scalars['String']['input']>; /** The customer's telephone number. */
telephone?: InputMaybe<Scalars['String']['input']>; /** The customer's Tax/VAT number (for corporate customers). */
vat_id?: InputMaybe<Scalars['String']['input']>;
};