mod build;
mod end_point;
mod new;
mod query_string;
mod validatable;
mod with_language;
mod with_location_types;
mod with_result_types;
#[cfg(feature = "reqwest")]
mod execute;
#[cfg(feature = "reqwest")]
mod get;
#[cfg(feature = "reqwest")]
mod request_headers;
#[derive(Debug)]
pub struct ReverseRequest<'r> {
client: &'r crate::client::Client,
latlng: crate::types::LatLng,
language: Option<crate::types::Language>,
location_types: Vec<crate::types::LocationType>,
result_types: Vec<crate::types::PlaceType>,
}