/** * 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. */ import type { CreateCoinResponseData } from './CreateCoinResponseData'; /** * * @export * @interface CreateCoinResponse */ export interface CreateCoinResponse { /** * * @type {CreateCoinResponseData} * @memberof CreateCoinResponse */ data?: CreateCoinResponseData; } /** * Check if a given object implements the CreateCoinResponse interface. */ export declare function instanceOfCreateCoinResponse(value: object): value is CreateCoinResponse; export declare function CreateCoinResponseFromJSON(json: any): CreateCoinResponse; export declare function CreateCoinResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCoinResponse; export declare function CreateCoinResponseToJSON(value?: CreateCoinResponse | null): any;