/** * 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 UserArtistCoinBadge */ export interface UserArtistCoinBadge { /** * * @type {string} * @memberof UserArtistCoinBadge */ mint?: string; /** * * @type {string} * @memberof UserArtistCoinBadge */ logoUri?: string; /** * * @type {string} * @memberof UserArtistCoinBadge */ bannerImageUrl?: string; /** * The coin symbol/ticker * @type {string} * @memberof UserArtistCoinBadge */ ticker?: string; } /** * Check if a given object implements the UserArtistCoinBadge interface. */ export declare function instanceOfUserArtistCoinBadge(value: object): value is UserArtistCoinBadge; export declare function UserArtistCoinBadgeFromJSON(json: any): UserArtistCoinBadge; export declare function UserArtistCoinBadgeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserArtistCoinBadge; export declare function UserArtistCoinBadgeToJSON(value?: UserArtistCoinBadge | null): any;