import * as Enums from '../enums/index'; import { JurisdictionModel } from "./JurisdictionModel"; /** * An address used within this transaction. * @export * @class TransactionAddressModel */ export declare class TransactionAddressModel { /** * @type {number} * @memberof TransactionAddressModel */ id?: number | undefined; /** * @type {number} * @memberof TransactionAddressModel */ transactionId?: number | undefined; /** * @type {Enums.BoundaryLevel} * @memberof TransactionAddressModel */ boundaryLevel?: Enums.BoundaryLevel | undefined; /** * @type {string} * @memberof TransactionAddressModel */ line1?: string | undefined; /** * @type {string} * @memberof TransactionAddressModel */ line2?: string | undefined; /** * @type {string} * @memberof TransactionAddressModel */ line3?: string | undefined; /** * @type {string} * @memberof TransactionAddressModel */ city?: string | undefined; /** * @type {string} * @memberof TransactionAddressModel */ region?: string | undefined; /** * @type {string} * @memberof TransactionAddressModel */ postalCode?: string | undefined; /** * @type {string} * @memberof TransactionAddressModel */ country?: string | undefined; /** * @type {number} * @memberof TransactionAddressModel */ taxRegionId?: number | undefined; /** * @type {string} * @memberof TransactionAddressModel */ latitude?: string | undefined; /** * @type {string} * @memberof TransactionAddressModel */ longitude?: string | undefined; /** * @type {JurisdictionModel[]} * @memberof TransactionAddressModel */ jurisdictions?: JurisdictionModel[] | undefined; }