import * as Enums from '../enums/index'; /** * Use this object to provide an address and date range where your company does business. This address will be used to determine what jurisdictions you should declare nexus and calculate tax. * @export * @class DeclareNexusByAddressModel */ export declare class DeclareNexusByAddressModel { /** * @type {Date} * @memberof DeclareNexusByAddressModel */ effectiveDate?: Date | undefined; /** * @type {Date} * @memberof DeclareNexusByAddressModel */ endDate?: Date | undefined; /** * @type {string} * @memberof DeclareNexusByAddressModel */ taxTypeGroup?: string | undefined; /** * @type {string} * @memberof DeclareNexusByAddressModel */ nexusTaxTypeGroup?: string | undefined; /** * @type {string} * @memberof DeclareNexusByAddressModel */ line1?: string | undefined; /** * @type {Enums.TextCase} * @memberof DeclareNexusByAddressModel */ textCase?: Enums.TextCase | undefined; /** * @type {string} * @memberof DeclareNexusByAddressModel */ line2?: string | undefined; /** * @type {string} * @memberof DeclareNexusByAddressModel */ line3?: string | undefined; /** * @type {string} * @memberof DeclareNexusByAddressModel */ city?: string | undefined; /** * @type {string} * @memberof DeclareNexusByAddressModel */ region?: string | undefined; /** * @type {string} * @memberof DeclareNexusByAddressModel */ country?: string | undefined; /** * @type {string} * @memberof DeclareNexusByAddressModel */ postalCode?: string | undefined; /** * @type {number} * @memberof DeclareNexusByAddressModel */ latitude?: number | undefined; /** * @type {number} * @memberof DeclareNexusByAddressModel */ longitude?: number | undefined; }