/** * 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 UpdateTokenResponse */ export interface UpdateTokenResponse { /** * ID of the updated token * @type {string} * @memberof UpdateTokenResponse */ id: string; /** * Name of the service consumer * @type {string} * @memberof UpdateTokenResponse */ consumerName: string; /** * Updated active status * @type {boolean} * @memberof UpdateTokenResponse */ active: boolean; /** * Success message * @type {string} * @memberof UpdateTokenResponse */ message: string; } /** * Check if a given object implements the UpdateTokenResponse interface. */ export declare function instanceOfUpdateTokenResponse(value: object): value is UpdateTokenResponse; export declare function UpdateTokenResponseFromJSON(json: any): UpdateTokenResponse; export declare function UpdateTokenResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateTokenResponse; export declare function UpdateTokenResponseToJSON(json: any): UpdateTokenResponse; export declare function UpdateTokenResponseToJSONTyped(value?: UpdateTokenResponse | null, ignoreDiscriminator?: boolean): any;