/* tslint:disable */ /* eslint-disable */ /** * gljournalentries * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { GLAccountAmount } from './glaccount-amount'; /** * Represents the information to create general ledger journal entries. */ export interface PostGLJournalEntriesDTO { /** * The ID of the assigned branch for the journal entries. */ branchId?: string; /** * The list of general ledger accounts to be credited with corresponding amounts. */ credits?: Array; /** * The date and time when the general ledger journal entries were recorded, also known as the booking date. */ date: string; /** * The list of general ledger accounts to be debited with corresponding amounts. */ debits?: Array; /** * The notes entered when the journal entry was posted. */ notes?: string; /** * A non-unique trasanction ID. This will be autogenerated if an ID is not provided. */ transactionId?: string; }