interface ISimpleClient {
    client_identifier: string;
    inbox_address: string;
    is_archived?: boolean;
    no_email: boolean;
    primary_entity: Pick<
        Entities,
        "name"
        | "uuid"
        | "user_attributes"
        | "user_tags",
    >;
    private_client: boolean;
}

Properties

client_identifier: string

Identifier of the client

inbox_address: string

Mailbox address for client

is_archived?: boolean

Is this client archived

no_email: boolean

Does this client have the no_email flag

primary_entity: Pick<
    Entities,
    "name"
    | "uuid"
    | "user_attributes"
    | "user_tags",
>

Primary Entity

private_client: boolean

Is this client private