red-ui/libs/red-ui-http/src/lib/model/dossierTemplate.ts

61 lines
1.7 KiB
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.
*/
import { DownloadFileType } from './dossier';
import { List } from '../red-types';
export interface IDossierTemplate {
/**
* The userId of the user who created this DossierTemplate. Set by the system.
*/
readonly createdBy?: string;
/**
* The date when this dossierTemplate was created. Set by System on create.
*/
readonly dateAdded?: string;
/**
* The date when this dossierTemplate was last modified. Set by System on create.
*/
readonly dateModified?: string;
/**
* The description of this dossierTemplate
*/
readonly description?: string;
/**
* The Rule Set Id. Generated by the system on create.
*/
readonly dossierTemplateId?: string;
/**
* Download File Types for this dossierTemplate's dossiers submission package.
*/
readonly downloadFileTypes?: List<DownloadFileType>;
/**
* The userId of the user who last modified this DossierTemplate. Set by the system.
*/
readonly modifiedBy?: string;
/**
* The name of this dossierTemplate. Must be set on create / update requests
*/
readonly name?: string;
/**
* Report File Types for this dossierTemplate's dossiers submission package.
*/
readonly reportTemplateIds?: List;
/**
* Validity of start this dossierTemplate.
*/
readonly validFrom?: string;
/**
* Validity of end this dossierTemplate.
*/
readonly validTo?: string;
}