interface DAVResultResponseProps {
    displayname: string;
    getcontentlength?: string;
    getcontenttype?: string;
    getetag?: string;
    getlastmodified?: string;
    quota-available-bytes?: string | number;
    quota-used-bytes?: string | number;
    resourcetype: {
        collection?: unknown;
    };
    [additionalProp: string]: unknown;
}

Indexable

  • [additionalProp: string]: unknown

Properties

displayname: string
getcontentlength?: string
getcontenttype?: string
getetag?: string
getlastmodified?: string
quota-available-bytes?: string | number
quota-used-bytes?: string | number
resourcetype: {
    collection?: unknown;
}