interface Customer {
    assignedAt: null | string;
    assignedToUser: null | User;
    createdAt: string;
    createdBy: Actor;
    customerGroupMemberships: CustomerGroupMembership[];
    email: {
        email: string;
        isVerified: boolean;
        verifiedAt: null | string;
    };
    externalId: null | string;
    fullName: string;
    id: string;
    markedAsSpamAt?: null | string;
    markedAsSpamBy?: null | InternalActor;
    shortName: null | string;
    updatedAt: string;
    updatedBy: Actor;
}

Properties

assignedAt: null | string
assignedToUser: null | User
createdAt: string
createdBy: Actor
customerGroupMemberships: CustomerGroupMembership[]
email: {
    email: string;
    isVerified: boolean;
    verifiedAt: null | string;
}

Type declaration

  • email: string
  • isVerified: boolean
  • verifiedAt: null | string
externalId: null | string
fullName: string
id: string
markedAsSpamAt?: null | string
markedAsSpamBy?: null | InternalActor
shortName: null | string
updatedAt: string
updatedBy: Actor

Generated using TypeDoc