pub async fn search_appointment(
    configuration: &Configuration,
    place_uuid: Option<&str>,
    exclude_cancelled: Option<bool>,
    is_deleted: Option<bool>,
    start_range: Option<&str>,
    end_range: Option<&str>,
    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<Value, Error<SearchAppointmentError>>