/** * 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 RegisterApiKeyResponse */ export interface RegisterApiKeyResponse { /** * Whether the registration was successful * @type {boolean} * @memberof RegisterApiKeyResponse */ success?: boolean; } /** * Check if a given object implements the RegisterApiKeyResponse interface. */ export declare function instanceOfRegisterApiKeyResponse(value: object): value is RegisterApiKeyResponse; export declare function RegisterApiKeyResponseFromJSON(json: any): RegisterApiKeyResponse; export declare function RegisterApiKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterApiKeyResponse; export declare function RegisterApiKeyResponseToJSON(value?: RegisterApiKeyResponse | null): any;