/** * Audius API * * The version of the OpenAPI document: 1.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 CreateAccessKeyResponse */ export interface CreateAccessKeyResponse { /** * The newly created bearer token (API access key) * @type {string} * @memberof CreateAccessKeyResponse */ apiAccessKey: string; } /** * Check if a given object implements the CreateAccessKeyResponse interface. */ export declare function instanceOfCreateAccessKeyResponse(value: object): value is CreateAccessKeyResponse; export declare function CreateAccessKeyResponseFromJSON(json: any): CreateAccessKeyResponse; export declare function CreateAccessKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAccessKeyResponse; export declare function CreateAccessKeyResponseToJSON(value?: CreateAccessKeyResponse | null): any;