/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Permissions the current user has on this file.
 * @export
 * @interface UnifiedFilePermissions
 */
export interface UnifiedFilePermissions {
    /**
     * Whether the current user can download this file.
     * @type {boolean}
     * @memberof UnifiedFilePermissions
     */
    download?: boolean;
}
export declare function UnifiedFilePermissionsFromJSON(json: any): UnifiedFilePermissions;
export declare function UnifiedFilePermissionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnifiedFilePermissions;
export declare function UnifiedFilePermissionsToJSON(value?: UnifiedFilePermissions | null): any;
