/** * 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 the list of required actions that the user will need to take in order to gain access to an entity for download. * @export * @interface ActionRequiredList */ export interface ActionRequiredList { /** * The list of actions * @type {Array} * @memberof ActionRequiredList */ actions?: Array; } /** * Check if a given object implements the ActionRequiredList interface. */ export declare function instanceOfActionRequiredList(value: object): value is ActionRequiredList; export declare function ActionRequiredListFromJSON(json: any): ActionRequiredList; export declare function ActionRequiredListFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionRequiredList; export declare function ActionRequiredListToJSON(json: any): ActionRequiredList; export declare function ActionRequiredListToJSONTyped(value?: ActionRequiredList | null, ignoreDiscriminator?: boolean): any;