/** Document linked to a portability */
export interface PortabilityDocument {
    /** Description of the document */
    description?: string;
    /** Identifier of the document */
    documentId: number;
    /** URL to get document */
    getUrl: string;
    /** Name of the document */
    name: string;
    /** URL to upload document */
    putUrl?: string;
    /** Document size (in bytes) */
    size: number;
}
//# sourceMappingURL=PortabilityDocument.d.ts.map