/** * Represents an address to resolve. * @export * @class AddressLocationInfo */ export declare class AddressLocationInfo { /** * @type {string} * @memberof AddressLocationInfo */ locationCode?: string | undefined; /** * @type {string} * @memberof AddressLocationInfo */ line1?: string | undefined; /** * @type {string} * @memberof AddressLocationInfo */ line2?: string | undefined; /** * @type {string} * @memberof AddressLocationInfo */ line3?: string | undefined; /** * @type {string} * @memberof AddressLocationInfo */ city?: string | undefined; /** * @type {string} * @memberof AddressLocationInfo */ region?: string | undefined; /** * @type {string} * @memberof AddressLocationInfo */ country?: string | undefined; /** * @type {string} * @memberof AddressLocationInfo */ postalCode?: string | undefined; /** * @type {number} * @memberof AddressLocationInfo */ latitude?: number | undefined; /** * @type {number} * @memberof AddressLocationInfo */ longitude?: number | undefined; }