/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Response body generated when creating a personal access token. * @export * @interface AccessTokenGenerationResponse */ export interface AccessTokenGenerationResponse { /** * The generated token. The token cannot be retrieved again after the time of creation. * @type {string} * @memberof AccessTokenGenerationResponse */ token?: string; } /** * Check if a given object implements the AccessTokenGenerationResponse interface. */ export declare function instanceOfAccessTokenGenerationResponse(value: object): value is AccessTokenGenerationResponse; export declare function AccessTokenGenerationResponseFromJSON(json: any): AccessTokenGenerationResponse; export declare function AccessTokenGenerationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessTokenGenerationResponse; export declare function AccessTokenGenerationResponseToJSON(json: any): AccessTokenGenerationResponse; export declare function AccessTokenGenerationResponseToJSONTyped(value?: AccessTokenGenerationResponse | null, ignoreDiscriminator?: boolean): any;