export enum Rval {
  COMPLETED = 'COMPLETED',
  IN_PROGRESS = 'IN_PROGRESS',
  FAILED = 'FAILED',
}

/** getReportJobStatusResponse */
export interface GetReportJobStatusResponse {
  /** ReportJobStatus|xsd:string|COMPLETED,IN_PROGRESS,FAILED */
  rval?: Rval | keyof typeof Rval
}
