/** * 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 RegisterApiKeyRequestBody */ export interface RegisterApiKeyRequestBody { /** * The API secret (private key hex) for the developer app * @type {string} * @memberof RegisterApiKeyRequestBody */ apiSecret: string; } /** * Check if a given object implements the RegisterApiKeyRequestBody interface. */ export declare function instanceOfRegisterApiKeyRequestBody(value: object): value is RegisterApiKeyRequestBody; export declare function RegisterApiKeyRequestBodyFromJSON(json: any): RegisterApiKeyRequestBody; export declare function RegisterApiKeyRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterApiKeyRequestBody; export declare function RegisterApiKeyRequestBodyToJSON(value?: RegisterApiKeyRequestBody | null): any;