pub async fn search_products(
    configuration: &Configuration,
    with_meta: Option<bool>,
    name: Option<&str>,
    addons: Option<Vec<String>>,
    price_max: Option<i32>,
    price_min: Option<i32>,
    quantity_available: Option<bool>,
    is_deleted: 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<SearchProductsError>>