MonoCloud Authentication SDK
    Preparing search index...

    Represents a postal address as defined by the OpenID Connect standard address claim.

    interface Address {
        country?: string;
        formatted?: string;
        locality?: string;
        postal_code?: string;
        region?: string;
        street_address?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional provider-specific address fields.

    Index

    Properties

    country?: string

    Country name or ISO country code.

    formatted?: string

    Full mailing address formatted for display or mailing labels.

    locality?: string

    City or locality component.

    postal_code?: string

    Postal or ZIP code.

    region?: string

    State, province, or region component.

    street_address?: string

    Full street address component, which may include house number, street name, apartment, suite, or unit information.