1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
// ======================================
// This file was automatically generated.
// ======================================
use serde::{Deserialize, Serialize};
use crate::ids::TerminalLocationId;
use crate::params::{Metadata, Object};
use crate::resources::Address;
/// The resource representing a Stripe "TerminalLocationLocation".
///
/// For more details see <https://stripe.com/docs/api/terminal/locations/object>
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct TerminalLocation {
/// Unique identifier for the object.
pub id: TerminalLocationId,
#[serde(skip_serializing_if = "Option::is_none")]
pub address: Option<Address>,
/// The ID of a configuration that will be used to customize all readers in this location.
#[serde(skip_serializing_if = "Option::is_none")]
pub configuration_overrides: Option<String>,
// Always true for a deleted object
#[serde(default)]
pub deleted: bool,
/// The display name of the location.
#[serde(skip_serializing_if = "Option::is_none")]
pub display_name: Option<String>,
/// Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
#[serde(skip_serializing_if = "Option::is_none")]
pub livemode: Option<bool>,
/// Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object.
///
/// This can be useful for storing additional information about the object in a structured format.
#[serde(default)]
pub metadata: Metadata,
}
impl Object for TerminalLocation {
type Id = TerminalLocationId;
fn id(&self) -> Self::Id {
self.id.clone()
}
fn object(&self) -> &'static str {
"terminal.location"
}
}