Interface UpleadNodeParameters

Source
interface UpleadNodeParameters {
    company?: string;
    domain?: string;
    email?: string;
    firstname?: string;
    lastname?: string;
    operation?: "enrich";
    resource?: "person" | "company";
}

Properties§

Source§

readonly company?: string

The name of the company (e.g – amazon)

Source§

readonly domain?: string

The domain name (e.g – amazon.com)

Source§

readonly email?: string

Email address (e.g – mbenioff@salesforce.com)

Source§

readonly firstname?: string

First name of the person (e.g – Marc)

Source§

readonly lastname?: string

Last name of the person (e.g – Benioff)

Source§

readonly operation?: "enrich"

Default: "enrich"

Source§

readonly resource?: "person" | "company"

Default: "company"