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

OfflineUserAddressInfo

import type { OfflineUserAddressInfo } from "https://googleapis.deno.dev/v1/dfareporting:v4.ts";

Identify a user by name and address.

interface OfflineUserAddressInfo {
city?: string;
countryCode?: string;
hashedFirstName?: string;
hashedLastName?: string;
hashedStreetAddress?: string;
postalCode?: string;
state?: string;
}

§Properties

§
city?: string
[src]

City of the address.

§
countryCode?: string
[src]

2-letter country code in ISO-3166-1 alpha-2 of the user's address.

§
hashedFirstName?: string
[src]

First name of the user, which is hashed as SHA-256 after normalized (Lowercase all characters; Remove any extra spaces before, after, and in between).

§
hashedLastName?: string
[src]

Last name of the user, which is hashed as SHA-256 after normalized (lower case only and no punctuation).

§
hashedStreetAddress?: string
[src]

The street address of the user hashed using SHA-256 hash function after normalization (lower case only).

§
postalCode?: string
[src]

Postal code of the user's address.

§
state?: string
[src]

State code of the address.