13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* User's title status
|
|
*/
|
|
export enum UserTitleStatus {
|
|
FINISHED = 'finished',
|
|
PLANNED = 'planned',
|
|
DROPPED = 'dropped',
|
|
IN_PROGRESS = 'in-progress',
|
|
}
|