/** * 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. */ /** * Outcome of an `/auth/grant/approve` call. `approve` mints a fresh client * JWT and stores it against the grant for the polling client to collect; * `deny` records an `access_denied` terminal status. * @export * @enum {string} */ export declare enum GrantActionEnum { Approve = "approve", Deny = "deny" } export declare function GrantActionEnumFromJSON(json: any): GrantActionEnum; export declare function GrantActionEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): GrantActionEnum; export declare function GrantActionEnumToJSON(value?: GrantActionEnum | null): any;