AutoBE
    Preparing search index...

    Request parameters for searching and filtering sessions.

    Extends basic pagination with search and filter capabilities.

    interface IRequest {
        limit?: number & Type<"uint32"> | null;
        model?: string | null;
        page?: number & Type<"uint32"> | null;
        search?: string | null;
        vendor_id?: string & Format<"uuid"> | null;
    }
    Index

    Properties

    limit?: number & Type<"uint32"> | null

    Limitation of records per a page.

    100
    
    model?: string | null

    Filter by model identifier.

    page?: number & Type<"uint32"> | null

    Page number.

    search?: string | null

    Search keyword for session title.

    vendor_id?: string & Format<"uuid"> | null

    Filter by vendor ID.