/** * 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 UpdateCoinResponse */ export interface UpdateCoinResponse { /** * Indicates if the update was successful * @type {boolean} * @memberof UpdateCoinResponse */ success?: boolean; } /** * Check if a given object implements the UpdateCoinResponse interface. */ export declare function instanceOfUpdateCoinResponse(value: object): value is UpdateCoinResponse; export declare function UpdateCoinResponseFromJSON(json: any): UpdateCoinResponse; export declare function UpdateCoinResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateCoinResponse; export declare function UpdateCoinResponseToJSON(value?: UpdateCoinResponse | null): any;