@dolbyio/dolbyio-rest-apis-client - v6.2.0
    Preparing search index...

    Interface ListStreamsResponse

    interface ListStreamsResponse {
        data: StreamDetails[];
        pagination?: {
            itemsOnPage: number;
            totalItems: number;
            totalPages: number;
        };
    }
    Index

    Properties

    Properties

    Array of stream details.

    pagination?: { itemsOnPage: number; totalItems: number; totalPages: number }

    Pagination object.

    Type Declaration

    • itemsOnPage: number

      Number of items in that page.

    • totalItems: number

      Total number of items.

    • totalPages: number

      Total number of pages.