@seven.io/client
    Preparing search index...

    Type Alias Contact

    type Contact = {
        avatar: string;
        created: string;
        groups: number[];
        id: number;
        initials: { color: string; initials: string };
        properties: { [k: string]: any } & {
            address: string | null;
            birthday: string | null;
            city: string | null;
            email: string | null;
            firstname: string | null;
            fullname: string | null;
            home_number: string | null;
            lastname: string | null;
            mobile_number: string | null;
            notes: string | null;
            postal_code: string | null;
        };
        validation: {
            state: "valid"
            | "invalid"
            | "absent"
            | "unknown"
            | null;
            timestamp: string | null;
        };
    }
    Index

    Properties

    avatar: string
    created: string
    groups: number[]
    id: number
    initials: { color: string; initials: string }
    properties: { [k: string]: any } & {
        address: string | null;
        birthday: string | null;
        city: string | null;
        email: string | null;
        firstname: string | null;
        fullname: string | null;
        home_number: string | null;
        lastname: string | null;
        mobile_number: string | null;
        notes: string | null;
        postal_code: string | null;
    }
    validation: {
        state: "valid" | "invalid" | "absent" | "unknown" | null;
        timestamp: string | null;
    }