square_api_client/models/enums/
location_type.rs

1//! Model for LocationType enum
2
3use serde::{Deserialize, Serialize};
4
5/// A location's type.
6#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
7#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
8pub enum LocationType {
9    /// A place of business with a physical location.
10    Physical,
11    /// A place of business that is mobile, such as a food truck or online store.
12    Mobile,
13}