Home > @vsf-enterprise/bigcommerce-api > GraphQL > Customer

# GraphQL.Customer type

Signature:

export declare type Customer = {
    __typename?: 'Customer';
    entityId: Scalars['Int'];
    company: Scalars['String'];
    customerGroupId: Scalars['Int'];
    email: Scalars['String'];
    firstName: Scalars['String'];
    lastName: Scalars['String'];
    notes: Scalars['String'];
    phone: Scalars['String'];
    taxExemptCategory: Scalars['String'];
    addressCount: Scalars['Int'];
    attributeCount: Scalars['Int'];
    storeCredit: Array<Money>;
    attributes: CustomerAttributes;
    wishlists: WishlistConnection;
};