/** * 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 CreateTokenResponse */ export interface CreateTokenResponse { /** * ID of the created token * @type {string} * @memberof CreateTokenResponse */ id: string; /** * Name of the service consumer * @type {string} * @memberof CreateTokenResponse */ consumerName: string; /** * Generated authentication token (only shown once) * @type {string} * @memberof CreateTokenResponse */ token: string; /** * Success message * @type {string} * @memberof CreateTokenResponse */ message: string; } /** * Check if a given object implements the CreateTokenResponse interface. */ export declare function instanceOfCreateTokenResponse(value: object): value is CreateTokenResponse; export declare function CreateTokenResponseFromJSON(json: any): CreateTokenResponse; export declare function CreateTokenResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTokenResponse; export declare function CreateTokenResponseToJSON(json: any): CreateTokenResponse; export declare function CreateTokenResponseToJSONTyped(value?: CreateTokenResponse | null, ignoreDiscriminator?: boolean): any;