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

    Interface ListMediaDistributionsQueryParams

    The allowable parameters for listing and filtering media distributions.

    interface ListMediaDistributionsQueryParams {
        cursor?: string | null;
        default?: boolean;
        desc?: boolean;
        limit?: number;
        name?: string | null;
        sort?: "createdAt";
    }
    Index

    Properties

    cursor?: string | null

    Used for pagination. Do not include on the first request. For subsequent requests use the pagination.cursor field from the previous response. You must use the same sort option when requesting each page

    default?: boolean

    Optional, search for default media distribution.

    desc?: boolean

    Optional, defaults to false, sort descending boolean.

    limit?: number

    Optional, integer, 1 to 100, defaults to 25.

    name?: string | null

    Optional. Case insensitive.

    sort?: "createdAt"

    Defaults to "createdAt".