/** * Athena API * REST API for the Athena system * * 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. */ /** * * @export * @interface UpdateTokenRequest */ export interface UpdateTokenRequest { /** * Set token active status * @type {boolean} * @memberof UpdateTokenRequest */ active: boolean; } /** * Check if a given object implements the UpdateTokenRequest interface. */ export declare function instanceOfUpdateTokenRequest(value: object): value is UpdateTokenRequest; export declare function UpdateTokenRequestFromJSON(json: any): UpdateTokenRequest; export declare function UpdateTokenRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateTokenRequest; export declare function UpdateTokenRequestToJSON(json: any): UpdateTokenRequest; export declare function UpdateTokenRequestToJSONTyped(value?: UpdateTokenRequest | null, ignoreDiscriminator?: boolean): any;