/**
 * Farcaster API V2
 * The Farcaster API allows you to interact with the Farcaster protocol. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
 *
 * The version of the OpenAPI document: 2.26.1
 * Contact: team@neynar.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { ChannelExternalLink } from './channel-external-link';
import type { ChannelUserContext } from './channel-user-context';
import type { User } from './user';
/**
 *
 * @export
 * @interface Channel
 */
export interface Channel {
    /**
     *
     * @type {string}
     * @memberof Channel
     */
    'id': string;
    /**
     *
     * @type {string}
     * @memberof Channel
     */
    'url': string;
    /**
     *
     * @type {string}
     * @memberof Channel
     */
    'name'?: string;
    /**
     *
     * @type {string}
     * @memberof Channel
     */
    'description'?: string;
    /**
     *
     * @type {string}
     * @memberof Channel
     */
    'object': ChannelObjectEnum;
    /**
     * Epoch timestamp in seconds.
     * @type {number}
     * @memberof Channel
     */
    'created_at'?: number;
    /**
     * Number of followers the channel has.
     * @type {number}
     * @memberof Channel
     */
    'follower_count'?: number;
    /**
     *
     * @type {ChannelExternalLink}
     * @memberof Channel
     */
    'external_link'?: ChannelExternalLink;
    /**
     *
     * @type {string}
     * @memberof Channel
     */
    'image_url'?: string;
    /**
     *
     * @type {string}
     * @memberof Channel
     */
    'parent_url'?: string;
    /**
     *
     * @type {User}
     * @memberof Channel
     */
    'lead'?: User;
    /**
     *
     * @type {Array<number>}
     * @memberof Channel
     */
    'moderator_fids'?: Array<number>;
    /**
     *
     * @type {number}
     * @memberof Channel
     */
    'member_count'?: number;
    /**
     * Use `lead` instead.
     * @type {User}
     * @memberof Channel
     * @deprecated
     */
    'moderator'?: User;
    /**
     * Cast Hash
     * @type {string}
     * @memberof Channel
     */
    'pinned_cast_hash'?: string;
    /**
     *
     * @type {Array<User>}
     * @memberof Channel
     */
    'hosts'?: Array<User>;
    /**
     *
     * @type {ChannelUserContext}
     * @memberof Channel
     */
    'viewer_context'?: ChannelUserContext;
}
export declare const ChannelObjectEnum: {
    readonly Channel: "channel";
};
export type ChannelObjectEnum = typeof ChannelObjectEnum[keyof typeof ChannelObjectEnum];
