/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type ListDefaultAccessParams = { /** * --- filters --- * * [optional] [FROM] each rule owner is any of role(s) id; user -or- role */ grantor?: string[]; /** * [optional] [TO] subject role(s) id; user -or- role */ grantee?: string[]; /** * [xrwdxrwd] [R]ecord-[b]ased-[A]ccess-[C]ontrol level check(!) */ granted?: string[]; /** * [optional] [TO] subject.name ILIKE ?q=; user -or- role */ q?: string; /** * ----- Select Options ------------------------- * * attributes list */ fields?: string[]; /** * e.g.: "updated_at" - ASC; "!updated_at" - DESC; */ sort?: string[]; /** * pagedResultsControl * * default: 16 */ size?: number; /** * default: 1 */ page?: number; };