Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ContactInfo

import type { ContactInfo } from "https://googleapis.deno.dev/v1/displayvideo:v3.ts";

Contact information defining a Customer Match audience member.

interface ContactInfo {
countryCode?: string;
hashedEmails?: string[];
hashedFirstName?: string;
hashedLastName?: string;
hashedPhoneNumbers?: string[];
zipCodes?: string[];
}

§Properties

§
countryCode?: string
[src]

Country code of the member. Must also be set with the following fields: * hashed_first_name * hashed_last_name * zip_codes

§
hashedEmails?: string[]
[src]

A list of SHA256 hashed email of the member. Before hashing, remove all whitespace and make sure the string is all lowercase.

§
hashedFirstName?: string
[src]

SHA256 hashed first name of the member. Before hashing, remove all whitespace and make sure the string is all lowercase. Must also be set with the following fields: * country_code * hashed_last_name * zip_codes

§
hashedLastName?: string
[src]

SHA256 hashed last name of the member. Before hashing, remove all whitespace and make sure the string is all lowercase. Must also be set with the following fields: * country_code * hashed_first_name * zip_codes

§
hashedPhoneNumbers?: string[]
[src]

A list of SHA256 hashed phone numbers of the member. Before hashing, all phone numbers must be formatted using the E.164 format and include the country calling code.

§
zipCodes?: string[]
[src]

A list of zip codes of the member. Must also be set with the following fields: * country_code * hashed_first_name * hashed_last_name