30 lines
717 B
TypeScript
30 lines
717 B
TypeScript
/**
|
|
* API Documentation for Redaction Gateway
|
|
* Description for redaction
|
|
*
|
|
* OpenAPI spec version: 1.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
export interface Project {
|
|
date?: string;
|
|
description?: string;
|
|
dueDate?: string;
|
|
memberIds?: Array<string>;
|
|
ownerId?: string;
|
|
projectId?: string;
|
|
projectName?: string;
|
|
status?: Project.StatusEnum;
|
|
}
|
|
export namespace Project {
|
|
export type StatusEnum = 'ACTIVE' | 'DELETED';
|
|
export const StatusEnum = {
|
|
ACTIVE: 'ACTIVE' as StatusEnum,
|
|
DELETED: 'DELETED' as StatusEnum
|
|
};
|
|
}
|