/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Action } from './Action'; /** * Represents a single action that the user will need to take in order to download one or more files. * @export * @interface ActionRequiredCount */ export interface ActionRequiredCount { /** * * @type {Action} * @memberof ActionRequiredCount */ action?: Action; /** * The number of files that require this action. * @type {number} * @memberof ActionRequiredCount */ count?: number; } /** * Check if a given object implements the ActionRequiredCount interface. */ export declare function instanceOfActionRequiredCount(value: object): value is ActionRequiredCount; export declare function ActionRequiredCountFromJSON(json: any): ActionRequiredCount; export declare function ActionRequiredCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionRequiredCount; export declare function ActionRequiredCountToJSON(json: any): ActionRequiredCount; export declare function ActionRequiredCountToJSONTyped(value?: ActionRequiredCount | null, ignoreDiscriminator?: boolean): any;