Shopee SDK API Reference - v2.8.0
    Preparing search index...

    Interface GetSessionDetailResponseData

    GetSessionDetailResponseData sub-interface for GetSessionDetailResponse

    interface GetSessionDetailResponseData {
        cover_image_url?: string;
        create_time?: number;
        description?: string;
        end_time?: number;
        is_test?: boolean;
        session_id?: number;
        share_url?: string;
        start_time?: number;
        status?: number;
        stream_url_list?: GetSessionDetailStreamUrl[];
        title?: string;
        update_time?: number;
    }
    Index

    Properties

    cover_image_url?: string

    The cover image URL of the livestream session.

    create_time?: number

    The creation time of the livestream session. It's unix timestamp in seconds.

    description?: string

    The description of the livestream session.

    end_time?: number

    The end time of livestream session, 0 if session is not ended yet. It's unix timestamp in seconds.

    is_test?: boolean

    Indicate whether this livestream session if for testing purpose only.

    session_id?: number

    The identifier of livestream session.

    share_url?: string

    The share link of the livestream session.

    start_time?: number

    The start time of the livestream session, 0 if session is not started yet. It's unix timestamp in seconds.

    status?: number

    The status of the livestream session, the enumeration values are as follows:0 - Initial1 - Ongoing2 - Ended

    stream_url_list?: GetSessionDetailStreamUrl[]
    title?: string

    The title of the livestream session.

    update_time?: number

    The update time of the livestream session. It's unix timestamp in seconds.