/** * 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 EventFollowState */ export interface EventFollowState { /** * Whether the authenticated / requested user is currently subscribed to this event. * @type {boolean} * @memberof EventFollowState */ isFollowed: boolean; /** * Total number of users following this event. * @type {number} * @memberof EventFollowState */ followerCount: number; } /** * Check if a given object implements the EventFollowState interface. */ export declare function instanceOfEventFollowState(value: object): value is EventFollowState; export declare function EventFollowStateFromJSON(json: any): EventFollowState; export declare function EventFollowStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventFollowState; export declare function EventFollowStateToJSON(value?: EventFollowState | null): any;