/** * 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. */ import * as runtime from '../runtime'; import type { TrackCommentsResponse } from '../models'; export interface GetFanClubFeedRequest { mint: string; userId?: string; offset?: number; limit?: number; } export interface GetFanClubFeedAliasRequest { mint: string; userId?: string; offset?: number; limit?: number; } /** * */ export declare class FanClubApi extends runtime.BaseAPI { /** * @hidden * Get the fan club feed for a given artist, including text posts and comments */ getFanClubFeedRaw(params: GetFanClubFeedRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get the fan club feed for a given artist, including text posts and comments */ getFanClubFeed(params: GetFanClubFeedRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * @hidden * Get the fan club feed for a given artist (hyphenated alias), including text posts and comments */ getFanClubFeedAliasRaw(params: GetFanClubFeedAliasRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get the fan club feed for a given artist (hyphenated alias), including text posts and comments */ getFanClubFeedAlias(params: GetFanClubFeedAliasRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }