Interface RossumDocumentDataModel

interface RossumDocumentDataModel {
    arrived_at?: Date;
    content: string;
    id: number;
    metadata: any;
    mime_type: string;
    original_file_name: string;
    s3_name: string;
    status: string;
    time_spent: number;
    url: string;
}

Properties

arrived_at?: Date
content: string
id: number
metadata: any
mime_type: string
original_file_name: string
s3_name: string
status: string
time_spent: number
url: string