/** * Represents a physical location used in exemption certificate management. * @export * @class ClerkLocationModel */ export declare class ClerkLocationModel { /** * @type {number} * @memberof ClerkLocationModel */ id?: number | undefined; /** * @type {string} * @memberof ClerkLocationModel */ name?: string | undefined; /** * @type {string} * @memberof ClerkLocationModel */ code?: string | undefined; /** * @type {string} * @memberof ClerkLocationModel */ addressLine1?: string | undefined; /** * @type {string} * @memberof ClerkLocationModel */ addressLine2?: string | undefined; /** * @type {string} * @memberof ClerkLocationModel */ city?: string | undefined; /** * @type {string} * @memberof ClerkLocationModel */ zip?: string | undefined; /** * @type {number} * @memberof ClerkLocationModel */ stateId?: number | undefined; /** * @type {string} * @memberof ClerkLocationModel */ stateName?: string | undefined; /** * @type {string} * @memberof ClerkLocationModel */ stateInitials?: string | undefined; /** * @type {number} * @memberof ClerkLocationModel */ countryId?: number | undefined; /** * @type {string} * @memberof ClerkLocationModel */ countryName?: string | undefined; /** * @type {string} * @memberof ClerkLocationModel */ countryInitials?: string | undefined; /** * @type {number} * @memberof ClerkLocationModel */ clientId?: number | undefined; /** * @type {string} * @memberof ClerkLocationModel */ clientName?: string | undefined; /** * @type {string} * @memberof ClerkLocationModel */ avataxCompanyId?: string | undefined; }