pub async fn search_staff(
    configuration: &Configuration,
    project_uuid: Option<&str>,
    first_name: Option<&str>,
    last_name: Option<&str>,
    is_deleted: Option<bool>,
    with_companies: Option<bool>,
    with_places: Option<bool>,
    with_schedule: Option<bool>,
    with_catalog: Option<bool>,
    with_reviews: Option<bool>,
    with_roles: Option<bool>,
    page: Option<i32>,
    page_size: Option<i32>,
    sort_on: Option<&str>,
    sort_desc: Option<bool>,
    x_access_token: Option<&str>,
    x_secret_token: Option<&str>,
    authorization: Option<&str>,
    ehelply_active_participant: Option<&str>,
    ehelply_project: Option<&str>,
    ehelply_data: Option<&str>
) -> Result<Page, Error<SearchStaffError>>
Expand description

TODO Item return format: { uuid **type:** string project_uuid **type:** string or None entity **type:** string or None place **type:** dict or None company **type:** dict or None schedule **type:** dict or None catalog **type:** dict or None reviews **type:** dict or None created_at **type:** string or None updated_at **type:** string or None deleted_at **type:** string or None }