Person: {
    emails: string[];
    first_name: string;
    id: number;
    last_name: string;
    primary_email: string;
    type: PersonType;
}

Type declaration

  • emails: string[]

    The email addresses of the person.

  • first_name: string

    The first name of the person.

  • id: number

    The unique identifier of the person object.

  • last_name: string

    The last name of the person.

  • primary_email: string

    The email (automatically computed) that is most likely to the current active email address of the person.

  • type: PersonType

    The type of person.