/**
 * 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;
}
