/** * 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 CreateCoinResponseData */ export interface CreateCoinResponseData { /** * The mint address of the coin * @type {string} * @memberof CreateCoinResponseData */ mint: string; /** * The coin symbol/ticker * @type {string} * @memberof CreateCoinResponseData */ ticker: string; /** * The user ID who created the coin * @type {number} * @memberof CreateCoinResponseData */ userId: number; /** * The number of decimals for the coin * @type {number} * @memberof CreateCoinResponseData */ decimals: number; /** * The coin name * @type {string} * @memberof CreateCoinResponseData */ name: string; /** * The URI for the coin's logo image * @type {string} * @memberof CreateCoinResponseData */ logoUri?: string; /** * The URI for the coin's banner image * @type {string} * @memberof CreateCoinResponseData */ bannerImageUrl?: string; /** * The description of the coin * @type {string} * @memberof CreateCoinResponseData */ description?: string; /** * Generic link URL for the coin * @type {string} * @memberof CreateCoinResponseData */ link1?: string; /** * Generic link URL for the coin * @type {string} * @memberof CreateCoinResponseData */ link2?: string; /** * Generic link URL for the coin * @type {string} * @memberof CreateCoinResponseData */ link3?: string; /** * Generic link URL for the coin * @type {string} * @memberof CreateCoinResponseData */ link4?: string; /** * The date and time when the coin was created * @type {Date} * @memberof CreateCoinResponseData */ createdAt: Date; } /** * Check if a given object implements the CreateCoinResponseData interface. */ export declare function instanceOfCreateCoinResponseData(value: object): value is CreateCoinResponseData; export declare function CreateCoinResponseDataFromJSON(json: any): CreateCoinResponseData; export declare function CreateCoinResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCoinResponseData; export declare function CreateCoinResponseDataToJSON(value?: CreateCoinResponseData | null): any;