pub struct CustomerNotificationSubscription {Show 17 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub subscriber: Option<Box<User>>,
pub customer: Option<Box<Customer>>,
pub custom_view: Option<Box<CustomView>>,
pub cycle: Option<Box<Cycle>>,
pub label: Option<Box<IssueLabel>>,
pub project: Option<Box<Project>>,
pub initiative: Option<Box<Initiative>>,
pub team: Option<Box<Team>>,
pub user: Option<Box<User>>,
pub context_view_type: Option<ContextViewType>,
pub user_context_view_type: Option<UserContextViewType>,
pub active: Option<bool>,
pub notification_subscription_types: Option<Vec<String>>,
}Expand description
A customer notification subscription.
Fields§
§id: Option<String>The unique identifier of the entity.
created_at: Option<DateTime<Utc>>The time at which the entity was created.
updated_at: Option<DateTime<Utc>>The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn’t been updated after creation.
archived_at: Option<DateTime<Utc>>The time at which the entity was archived. Null if the entity has not been archived.
subscriber: Option<Box<User>>The user that subscribed to receive notifications.
customer: Option<Box<Customer>>The customer subscribed to.
custom_view: Option<Box<CustomView>>The contextual custom view associated with the notification subscription.
cycle: Option<Box<Cycle>>The contextual cycle view associated with the notification subscription.
label: Option<Box<IssueLabel>>The contextual label view associated with the notification subscription.
project: Option<Box<Project>>The contextual project view associated with the notification subscription.
initiative: Option<Box<Initiative>>The contextual initiative view associated with the notification subscription.
team: Option<Box<Team>>The team associated with the notification subscription.
user: Option<Box<User>>The user view associated with the notification subscription.
context_view_type: Option<ContextViewType>The type of view to which the notification subscription context is associated with.
user_context_view_type: Option<UserContextViewType>The type of user view to which the notification subscription context is associated with.
active: Option<bool>Whether the subscription is active or not.
notification_subscription_types: Option<Vec<String>>The type of subscription.
Trait Implementations§
Source§impl Clone for CustomerNotificationSubscription
impl Clone for CustomerNotificationSubscription
Source§fn clone(&self) -> CustomerNotificationSubscription
fn clone(&self) -> CustomerNotificationSubscription
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more