/* eslint-disable */
import * as Types from '@graphcommerce/graphql-mesh/.mesh';

export type CustomerInfoFragment = { default_billing?: string | null, default_shipping?: string | null, email?: string | null, prefix?: string | null, firstname?: string | null, middlename?: string | null, lastname?: string | null, suffix?: string | null, gender?: number | null, is_subscribed?: boolean | null, date_of_birth?: string | null, taxvat?: string | null, addresses?: Array<{ default_billing?: boolean | null, id?: number | null, prefix?: string | null, firstname?: string | null, middlename?: string | null, lastname?: string | null, suffix?: string | null, city?: string | null, company?: string | null, country_code?: Types.CountryCodeEnum | null, postcode?: string | null, street?: Array<string | null> | null, telephone?: string | null, vat_id?: string | null, default_shipping?: boolean | null, region?: { region?: string | null, region_code?: string | null, region_id?: number | null } | null } | null> | null };
