/**
 * 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 { CastTextRange } from './cast-text-range';
import type { DehydratedChannel } from './dehydrated-channel';
import type { UserDehydrated } from './user-dehydrated';
/**
 *
 * @export
 * @interface UserProfileBio
 */
export interface UserProfileBio {
    /**
     *
     * @type {string}
     * @memberof UserProfileBio
     */
    'text': string;
    /**
     *
     * @type {Array<UserDehydrated>}
     * @memberof UserProfileBio
     */
    'mentioned_profiles'?: Array<UserDehydrated>;
    /**
     * Positions within the text (inclusive start, exclusive end) where each mention occurs. Each index within this list corresponds to the same-numbered index in the mentioned_profiles list.
     * @type {Array<CastTextRange>}
     * @memberof UserProfileBio
     */
    'mentioned_profiles_ranges'?: Array<CastTextRange>;
    /**
     *
     * @type {Array<DehydratedChannel>}
     * @memberof UserProfileBio
     */
    'mentioned_channels'?: Array<DehydratedChannel>;
    /**
     * Positions within the text (inclusive start, exclusive end) where each mention occurs. Each index within this list corresponds to the same-numbered index in the mentioned_channels list.
     * @type {Array<CastTextRange>}
     * @memberof UserProfileBio
     */
    'mentioned_channels_ranges'?: Array<CastTextRange>;
}
