/** Document linked to a telephony service */
export interface Document {
    /** Description of the document */
    description?: string;
    /** Identifier of the document */
    id: string;
    /** Name of the document */
    name: string;
    /** Document size (in bytes) */
    size: number;
    /** URL to get document */
    url: string;
    /** Document validation date */
    validationDate?: string;
}
//# sourceMappingURL=Document.d.ts.map