@theredspace/spp-client
    Preparing search index...

    Interface Contact

    A person contact within the system. Supports Add, Read, Modify, Upsert, Delete.

    interface Contact {
        active?: "0" | "1";
        addr: {
            addr1?: string;
            addr2?: string;
            addr3?: string;
            addr4?: string;
            city?: string;
            contact_id?: string;
            country?: string;
            email?: string;
            fax?: string;
            first?: string;
            id?: string;
            last?: string;
            middle?: string;
            mobile?: string;
            phone?: string;
            salutation?: string;
            state?: string;
            zip?: string;
        };
        can_bill_to?: "0"
        | "1";
        can_ship_to?: "0" | "1";
        can_sold_to?: "0" | "1";
        code?: string;
        created: DateContainer;
        customer_company?: string;
        customerid?: string;
        email?: string;
        exported?: DateContainer;
        externalid?: string;
        first_name: string;
        id: string;
        job_title?: string;
        last_name: string;
        name?: string;
        nickname?: string;
        notes?: string;
        phone?: string;
        picklist_label?: string;
        updated: DateContainer;
    }
    Index

    Properties

    active?: "0" | "1"
    addr: {
        addr1?: string;
        addr2?: string;
        addr3?: string;
        addr4?: string;
        city?: string;
        contact_id?: string;
        country?: string;
        email?: string;
        fax?: string;
        first?: string;
        id?: string;
        last?: string;
        middle?: string;
        mobile?: string;
        phone?: string;
        salutation?: string;
        state?: string;
        zip?: string;
    }
    can_bill_to?: "0" | "1"
    can_ship_to?: "0" | "1"
    can_sold_to?: "0" | "1"
    code?: string
    created: DateContainer
    customer_company?: string
    customerid?: string
    email?: string
    exported?: DateContainer
    externalid?: string
    first_name: string
    id: string
    job_title?: string
    last_name: string
    name?: string
    nickname?: string
    notes?: string
    phone?: string
    picklist_label?: string
    updated: DateContainer