/** * 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. */ /** * Request body for updating coin information * @export * @interface UpdateCoinRequest */ export interface UpdateCoinRequest { /** * The description of the coin (max 2500 characters) * @type {string} * @memberof UpdateCoinRequest */ description?: string; /** * URL for the coin's banner image * @type {string} * @memberof UpdateCoinRequest */ bannerImageUrl?: string; /** * Generic link URL for the coin * @type {string} * @memberof UpdateCoinRequest */ link1?: string; /** * Generic link URL for the coin * @type {string} * @memberof UpdateCoinRequest */ link2?: string; /** * Generic link URL for the coin * @type {string} * @memberof UpdateCoinRequest */ link3?: string; /** * Generic link URL for the coin * @type {string} * @memberof UpdateCoinRequest */ link4?: string; } /** * Check if a given object implements the UpdateCoinRequest interface. */ export declare function instanceOfUpdateCoinRequest(value: object): value is UpdateCoinRequest; export declare function UpdateCoinRequestFromJSON(json: any): UpdateCoinRequest; export declare function UpdateCoinRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateCoinRequest; export declare function UpdateCoinRequestToJSON(value?: UpdateCoinRequest | null): any;