/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * 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 { User } from './User.js'; import type { Resource } from './Resource.js'; /** * * @export * @interface Input */ export interface Input { /** * * @type {string} * @memberof Input */ action?: string; /** * * @type {{ [key: string]: any; }} * @memberof Input */ context?: { [key: string]: any; }; /** * * @type {Resource} * @memberof Input */ resource?: Resource; /** * * @type {User} * @memberof Input */ user?: User; /** * * @type {any} * @memberof Input */ sdk?: any | null; } /** * Check if a given object implements the Input interface. */ export declare function instanceOfInput(value: object): value is Input; export declare function InputFromJSON(json: any): Input; export declare function InputFromJSONTyped(json: any, ignoreDiscriminator: boolean): Input; export declare function InputToJSON(json: any): Input; export declare function InputToJSONTyped(value?: Input | null, ignoreDiscriminator?: boolean): any;