square_api_client/models/
subscription_source.rs

1//! Model struct for SubscriptionSource type
2
3use serde::{Deserialize, Serialize};
4
5/// The origination details of the subscription.
6#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
7pub struct SubscriptionSource {
8    /// **Read only** The name used to identify the place (physical or digital) that a subscription
9    /// originates. If unset, the name defaults to the name of the application that created the
10    /// subscription.
11    ///
12    /// Max Length: 255
13    pub name: Option<String>,
14}