Interface IRawSpace

Represents the raw data of a single Space.

interface IRawSpace {
    conversation_controls: number;
    created_at: number;
    creator_results: IRawDataResult<IRawUser>;
    disallow_join: boolean;
    ended_at: string;
    is_employee_only: boolean;
    is_locked: boolean;
    is_muted: boolean;
    is_space_available_for_clipping: boolean;
    is_space_available_for_replay: boolean;
    media_key: string;
    narrow_cast_space_type: number;
    no_incognito: boolean;
    replay_start_time: number;
    rest_id: string;
    started_at: number;
    state: string;
    title: string;
    total_live_listeners: number;
    total_replay_watched: number;
    tweet_results: IRawDataResult<IRawTweet>;
    updated_at: number;
}

Properties

conversation_controls: number
created_at: number
creator_results: IRawDataResult<IRawUser>
disallow_join: boolean
ended_at: string
is_employee_only: boolean
is_locked: boolean
is_muted: boolean
is_space_available_for_clipping: boolean
is_space_available_for_replay: boolean
media_key: string
narrow_cast_space_type: number
no_incognito: boolean
replay_start_time: number
rest_id: string
started_at: number
state: string
title: string
total_live_listeners: number
total_replay_watched: number
tweet_results: IRawDataResult<IRawTweet>
updated_at: number