Type Alias Customer

Customer: {
    id: string;
    name: string;
    internalId: string;
    fields?: Record<string, any>;
    credentials?: any;
    lastActiveAt?: string;
    isTest?: boolean;
    isBillable?: boolean;
}