interface UpleadNodeParameters {
company?: string;
domain?: string;
email?: string;
firstname?: string;
lastname?: string;
operation?: "enrich";
resource?: "person" | "company";
}
Properties§
§
§
§
§
§
§
§
readonly company?: string
readonly domain?: string
The domain name (e.g – amazon.com)
readonly email?: string
Email address (e.g – mbenioff@salesforce.com)
readonly firstname?: string
First name of the person (e.g – Marc)
readonly lastname?: string
Last name of the person (e.g – Benioff)
readonly operation?: "enrich"
Default: "enrich"
readonly resource?: "person" | "company"
Default: "company"
The name of the company (e.g – amazon)