UNPKG

@fdot/edms-api-lib

Version:

The edms-api-lib package wraps service calls to FDOT EDMS API. ## Installation `npm install @fdot/edms-api-lib --save`

26 lines (25 loc) 742 B
/** * v1 * FDOT Document Management API * The FDOT API for interfacing with the departments Document Management System * localhost:60583/swagger */ import { DocumentType } from "./DocumentType"; import { DocumentProperty } from "./DocumentProperty"; import { Application } from "./Application"; export interface DocumentData { DocumentType?: DocumentType; Properties?: DocumentProperty[]; Application?: Application; Name?: string; Extension?: string; /** format: int32 */ RetentionYears?: number; /** format: date-time */ RetentionStartDate?: string; /** format: int64 */ FileSize?: number; FormName?: string; /** format: int32 */ FormSystemId?: number; }