/* tslint:disable */ /* eslint-disable */ /** * accounting/reports * 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. */ /** * Represents the information about the accounting report generation status. */ export interface AccountingReportGenerationResponse { /** * The encoded key of the generated report. */ reportKey?: string; /** * Represents the execution status of a background process */ status?: AccountingReportGenerationResponseStatusEnum; } export const AccountingReportGenerationResponseStatusEnum = { Queued: 'QUEUED', InProgress: 'IN_PROGRESS', Complete: 'COMPLETE', NotFound: 'NOT_FOUND', Cancel: 'CANCEL', ToBeCanceled: 'TO_BE_CANCELED', TimedOut: 'TIMED_OUT', Error: 'ERROR', TransientError: 'TRANSIENT_ERROR', Overridden: 'OVERRIDDEN', RecoverableError: 'RECOVERABLE_ERROR', } as const; export type AccountingReportGenerationResponseStatusEnum = (typeof AccountingReportGenerationResponseStatusEnum)[keyof typeof AccountingReportGenerationResponseStatusEnum];