Interface OidcAddressClaim

Standard OpenID Connect address claim. The Address Claim represents a physical mailing address.

interface OidcAddressClaim {
    country?: string;
    formatted?: string;
    locality?: string;
    postal_code?: string;
    region?: string;
    street_address?: string;
}

Properties

country?: string

Country name component.

formatted?: string

Full mailing address, formatted for display or use on a mailing label. This field MAY contain multiple lines, separated by newlines. Newlines can be represented either as a carriage return/line feed pair ("\r\n") or as a single line feed character ("\n").

locality?: string

City or locality component.

postal_code?: string

Zip code or postal code component.

region?: string

State, province, prefecture, or region component.

street_address?: string

Full street address component, which MAY include house number, street name, Post Office Box, and multi-line extended street address information. This field MAY contain multiple lines, separated by newlines. Newlines can be represented either as a carriage return/line feed pair ("\r\n") or as a single line feed character ("\n").

Generated using TypeDoc