import { Int64TaxProfileObjectReferenceModel } from "./Int64TaxProfileObjectReferenceModel"; /** * GL account request model * @export * @class GLAccountRequestModel */ export declare class GLAccountRequestModel { /** * @type {string} * @memberof GLAccountRequestModel */ entityUseCode?: string | undefined; /** * @type {Date} * @memberof GLAccountRequestModel */ effectiveDate?: Date | undefined; /** * @type {Date} * @memberof GLAccountRequestModel */ endDate?: Date | undefined; /** * @type {Int64TaxProfileObjectReferenceModel} * @memberof GLAccountRequestModel */ defaultItem?: Int64TaxProfileObjectReferenceModel | undefined; /** * @type {string} * @memberof GLAccountRequestModel */ glAccountCode: string; }