Represents an address with its properties.

interface Address {
    AddressLine1: string;
    AddressLine2: string;
    CompanyName: string;
    Country: string;
    Email: string;
    FaxNumber: string;
    FirstName: string;
    FullName: string;
    Id?: number;
    LastName: string;
    MisConfigurations: MisConfigType[];
    StateProvince: string;
    Telephone: string;
    Town: string;
    ZipPostalCode: string;
}

Properties

AddressLine1: string

First line of the address.

AddressLine2: string

Second line of the address (if applicable).

CompanyName: string

Company name associated with the address.

Country: string

Country of the address.

Email: string

Email address associated with the address.

FaxNumber: string

Fax number associated with the address.

FirstName: string

First name of the recipient.

FullName: string

Full name of the recipient.

Id?: number

Optional ID for the address.

LastName: string

Last name of the recipient.

MisConfigurations: MisConfigType[]

Array of misconfigurations related to the address.

StateProvince: string

State or province of the address (nullable).

Telephone: string

Telephone number associated with the address.

Town: string

Town or city of the address.

ZipPostalCode: string

ZIP or postal code of the address.