/** * 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'; /** * Request body for `POST /auth/grant/approve`. * @export * @interface GrantApproveRequest */ export interface GrantApproveRequest { /** * The user_code displayed in the client's terminal/UI. * @type {string} * @memberof GrantApproveRequest */ userCode: string; /** * * @type {GrantActionEnum} * @memberof GrantApproveRequest */ action: GrantActionEnum; } export declare function GrantApproveRequestFromJSON(json: any): GrantApproveRequest; export declare function GrantApproveRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GrantApproveRequest; export declare function GrantApproveRequestToJSON(value?: GrantApproveRequest | null): any;