use super::*;
#[cfg_attr(feature = "derive-debug", derive(Debug))]
#[cfg_attr(feature = "derive-clone", derive(Clone))]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "serde", serde(untagged))]
pub enum LocationProperty {
#[cfg(any(any(feature = "place-schema", feature = "general-schema-section"), doc))]
Place(Place),
#[cfg(any(
any(feature = "postal-address-schema", feature = "general-schema-section"),
doc
))]
PostalAddress(PostalAddress),
#[cfg(any(any(feature = "text-schema", feature = "general-schema-section"), doc))]
Text(Text),
#[cfg(any(
any(
feature = "virtual-location-schema",
feature = "pending-schema-section"
),
doc
))]
VirtualLocation(VirtualLocation),
}