Interface IRawSpace

Represents the raw data of a single Space.

interface IRawSpace {
    content_type?: string;
    conversation_controls?: number;
    created_at?: string | number;
    creator_id?: string;
    creator_results?: IRawDataResult<IRawUser>;
    disallow_join?: boolean;
    ended_at?: string | number;
    host_ids?: string[];
    invited_user_ids?: string[];
    is_employee_only?: boolean;
    is_locked?: boolean;
    is_muted?: boolean;
    is_space_available_for_clipping?: boolean;
    is_space_available_for_replay?: boolean;
    is_ticketed?: string | boolean;
    lang?: string;
    max_admin_capacity?: number;
    max_guest_sessions?: number;
    media_key?: string;
    narrow_cast_space_type?: number;
    no_incognito?: boolean;
    participant_count?: number;
    pending_admin_twitter_user_ids?: { rest_id?: string }[];
    replay_start_time?: string | number;
    rest_id: string;
    scheduled_start?: string | number;
    speaker_ids?: string[];
    started_at?: string | number;
    state?: string;
    subscriber_count?: number;
    title?: string;
    topics?: IRawSpaceTopic[];
    total_live_listeners?: number;
    total_replay_watched?: number;
    tweet_results?: IRawDataResult<IRawTweet>;
    updated_at?: string | number;
}

Properties

content_type?: string
conversation_controls?: number
created_at?: string | number
creator_id?: string
creator_results?: IRawDataResult<IRawUser>
disallow_join?: boolean
ended_at?: string | number
host_ids?: string[]
invited_user_ids?: string[]
is_employee_only?: boolean
is_locked?: boolean
is_muted?: boolean
is_space_available_for_clipping?: boolean
is_space_available_for_replay?: boolean
is_ticketed?: string | boolean
lang?: string
max_admin_capacity?: number
max_guest_sessions?: number
media_key?: string
narrow_cast_space_type?: number
no_incognito?: boolean
participant_count?: number
pending_admin_twitter_user_ids?: { rest_id?: string }[]
replay_start_time?: string | number
rest_id: string
scheduled_start?: string | number
speaker_ids?: string[]
started_at?: string | number
state?: string
subscriber_count?: number
title?: string
topics?: IRawSpaceTopic[]
total_live_listeners?: number
total_replay_watched?: number
tweet_results?: IRawDataResult<IRawTweet>
updated_at?: string | number