import { TaxProfileMetaDataModel } from "./TaxProfileMetaDataModel"; import { Int64TaxProfileObjectReferenceModel } from "./Int64TaxProfileObjectReferenceModel"; /** * GL account response model * @export * @class GLAccountSuccessResponseModel */ export declare class GLAccountSuccessResponseModel { /** * @type {number} * @memberof GLAccountSuccessResponseModel */ glAccountId?: number | undefined; /** * @type {number} * @memberof GLAccountSuccessResponseModel */ companyId?: number | undefined; /** * @type {TaxProfileMetaDataModel} * @memberof GLAccountSuccessResponseModel */ meta?: TaxProfileMetaDataModel | undefined; /** * @type {string} * @memberof GLAccountSuccessResponseModel */ entityUseCode?: string | undefined; /** * @type {Date} * @memberof GLAccountSuccessResponseModel */ effectiveDate?: Date | undefined; /** * @type {Date} * @memberof GLAccountSuccessResponseModel */ endDate?: Date | undefined; /** * @type {Int64TaxProfileObjectReferenceModel} * @memberof GLAccountSuccessResponseModel */ defaultItem?: Int64TaxProfileObjectReferenceModel | undefined; /** * @type {string} * @memberof GLAccountSuccessResponseModel */ glAccountCode: string; }