Interface ListSessionsParams

interface ListSessionsParams {
    status?: "active" | "finalized";
    patientId?: string;
    limit?: number;
    offset?: number;
}

Properties

status?: "active" | "finalized"
patientId?: string
limit?: number
offset?: number