import * as Enums from '../enums/index'; /** * Expire a location without restriction then update with new remittance and dates. * @export * @class UpdateCompanyLocationRemittanceModel */ export declare class UpdateCompanyLocationRemittanceModel { /** * @type {Enums.AddressCategoryId} * @memberof UpdateCompanyLocationRemittanceModel */ addressCategoryId: Enums.AddressCategoryId; /** * @type {Date} * @memberof UpdateCompanyLocationRemittanceModel */ effectiveDate: Date; /** * @type {Date} * @memberof UpdateCompanyLocationRemittanceModel */ endDate?: Date | undefined; }