/** * 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 CreateCoinRequest */ export interface CreateCoinRequest { /** * The mint address of the coin * @type {string} * @memberof CreateCoinRequest */ mint: string; /** * The coin symbol/ticker * @type {string} * @memberof CreateCoinRequest */ ticker: string; /** * The number of decimals for the coin (0-18) * @type {number} * @memberof CreateCoinRequest */ decimals: number; /** * The coin name * @type {string} * @memberof CreateCoinRequest */ name: string; /** * The URI for the coin's logo image * @type {string} * @memberof CreateCoinRequest */ logoUri?: string; /** * The URI for the coin's banner image * @type {string} * @memberof CreateCoinRequest */ bannerImageUrl?: string; /** * The description of the coin * @type {string} * @memberof CreateCoinRequest */ description?: string; /** * Generic link URL for the coin * @type {string} * @memberof CreateCoinRequest */ link1?: string; /** * Generic link URL for the coin * @type {string} * @memberof CreateCoinRequest */ link2?: string; /** * Generic link URL for the coin * @type {string} * @memberof CreateCoinRequest */ link3?: string; /** * Generic link URL for the coin * @type {string} * @memberof CreateCoinRequest */ link4?: string; } /** * Check if a given object implements the CreateCoinRequest interface. */ export declare function instanceOfCreateCoinRequest(value: object): value is CreateCoinRequest; export declare function CreateCoinRequestFromJSON(json: any): CreateCoinRequest; export declare function CreateCoinRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCoinRequest; export declare function CreateCoinRequestToJSON(value?: CreateCoinRequest | null): any;