/** * 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. */ /** * * @export * @interface ResourceActionCreate */ export interface ResourceActionCreate { /** * * @type {string} * @memberof ResourceActionCreate */ key?: string; /** * * @type {string} * @memberof ResourceActionCreate */ name?: string; /** * * @type {string} * @memberof ResourceActionCreate */ description?: string; } /** * Check if a given object implements the ResourceActionCreate interface. */ export declare function instanceOfResourceActionCreate(value: object): value is ResourceActionCreate; export declare function ResourceActionCreateFromJSON(json: any): ResourceActionCreate; export declare function ResourceActionCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceActionCreate; export declare function ResourceActionCreateToJSON(json: any): ResourceActionCreate; export declare function ResourceActionCreateToJSONTyped(value?: ResourceActionCreate | null, ignoreDiscriminator?: boolean): any;