/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { GrantActionEnum } from './GrantActionEnum'; /** * Response from `POST /auth/grant/approve`. * @export * @interface GrantApproveResponse */ export interface GrantApproveResponse { /** * * @type {GrantActionEnum} * @memberof GrantApproveResponse */ status: GrantActionEnum; } export declare function GrantApproveResponseFromJSON(json: any): GrantApproveResponse; export declare function GrantApproveResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GrantApproveResponse; export declare function GrantApproveResponseToJSON(value?: GrantApproveResponse | null): any;