Mobile Locker JavaScript SDK
    Preparing search index...

    Interface Attendee

    An event attendee captured via badge scan or lead retrieval. Mirrors the iOS GRDBAttendee Swift model's toJSON() output.

    interface Attendee {
        address: string;
        badge_id: string | null;
        card_id: string | null;
        checked_in_at: string | null;
        checked_in_by_id: number | null;
        checked_out_at: string | null;
        city: string;
        clearbit_company_data: object | null;
        clearbit_data: object | null;
        clearbit_id: string;
        company: string;
        country: string;
        created_at: string;
        crm_object: string;
        crm_object_id: string;
        crm_object_type: string;
        data: object | null;
        declined_at: string | null;
        degree: string;
        designation: string;
        email: string;
        event_id: number;
        first_name: string;
        form_response_id: number | null;
        id: string;
        industry: string;
        last_name: string;
        linkedin_url: string;
        mobile_phone: string;
        mobilelocker_url: string | null;
        name: string;
        note: string;
        phone: string;
        postal_code: string;
        salutation: string;
        slug: string;
        source: string;
        specialty: string;
        state: string;
        status: string;
        street1: string;
        street2: string;
        team_id: number;
        title: string;
        type: string;
        updated_at: string;
        user_contact_id: number | null;
        user_id: number;
        zip_code: string;
    }
    Index

    Properties

    address: string
    badge_id: string | null
    card_id: string | null
    checked_in_at: string | null
    checked_in_by_id: number | null
    checked_out_at: string | null
    city: string
    clearbit_company_data: object | null

    Decoded Clearbit company data, or null if unavailable.

    clearbit_data: object | null

    Decoded Clearbit person data, or null if unavailable.

    clearbit_id: string
    company: string
    country: string
    created_at: string
    crm_object: string
    crm_object_id: string
    crm_object_type: string
    data: object | null

    Decoded supplemental data blob, or null if unavailable.

    declined_at: string | null
    degree: string
    designation: string
    email: string
    event_id: number
    first_name: string
    form_response_id: number | null
    id: string
    industry: string
    last_name: string
    linkedin_url: string
    mobile_phone: string
    mobilelocker_url: string | null
    name: string
    note: string
    phone: string
    postal_code: string
    salutation: string
    slug: string
    source: string
    specialty: string
    state: string
    status: string
    street1: string
    street2: string
    team_id: number
    title: string
    type: string
    updated_at: string
    user_contact_id: number | null
    user_id: number
    zip_code: string

    Legacy alias for postal_code — kept for backward compatibility with JS slides.