pub struct CustomView {Show 29 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub name: Option<String>,
pub description: Option<String>,
pub icon: Option<String>,
pub color: Option<String>,
pub organization: Option<Box<Organization>>,
pub creator: Option<Box<User>>,
pub owner: Option<Box<User>>,
pub updated_by: Option<Box<User>>,
pub filters: Option<Value>,
pub filter_data: Option<Value>,
pub project_filter_data: Option<Value>,
pub initiative_filter_data: Option<Value>,
pub feed_item_filter_data: Option<Value>,
pub shared: Option<bool>,
pub slug_id: Option<String>,
pub model_name: Option<String>,
pub facet: Option<Box<Facet>>,
pub team: Option<Box<Team>>,
pub projects: Option<Box<ProjectConnection>>,
pub issues: Option<Box<IssueConnection>>,
pub updates: Option<Box<FeedItemConnection>>,
pub user_view_preferences: Option<Box<ViewPreferences>>,
pub organization_view_preferences: Option<Box<ViewPreferences>>,
pub view_preferences_values: Option<Box<ViewPreferencesValues>>,
pub initiatives: Option<Box<InitiativeConnection>>,
}Expand description
A custom view that has been saved by a user.
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.
name: Option<String>The name of the custom view.
description: Option<String>The description of the custom view.
icon: Option<String>The icon of the custom view.
color: Option<String>The color of the icon of the custom view.
organization: Option<Box<Organization>>The organization of the custom view.
creator: Option<Box<User>>The user who created the custom view.
owner: Option<Box<User>>The user who owns the custom view.
updated_by: Option<Box<User>>The user who last updated the custom view.
filters: Option<Value>The filters applied to issues in the custom view.
filter_data: Option<Value>The filter applied to issues in the custom view.
project_filter_data: Option<Value>The filter applied to projects in the custom view.
initiative_filter_data: Option<Value>The filter applied to initiatives in the custom view.
feed_item_filter_data: Option<Value>The filter applied to feed items in the custom view.
Whether the custom view is shared with everyone in the organization.
slug_id: Option<String>The custom view’s unique URL slug.
model_name: Option<String>The model name of the custom view.
facet: Option<Box<Facet>>INTERNAL The facet associated with the custom view.
team: Option<Box<Team>>The team associated with the custom view.
projects: Option<Box<ProjectConnection>>Projects associated with the custom view.
issues: Option<Box<IssueConnection>>Issues associated with the custom view.
updates: Option<Box<FeedItemConnection>>Feed items associated with the custom view.
user_view_preferences: Option<Box<ViewPreferences>>The current users view preferences for this custom view.
organization_view_preferences: Option<Box<ViewPreferences>>The organizations default view preferences for this custom view.
view_preferences_values: Option<Box<ViewPreferencesValues>>The calculated view preferences values for this custom view.
initiatives: Option<Box<InitiativeConnection>>Initiatives associated with the custom view.
Trait Implementations§
Source§impl Clone for CustomView
impl Clone for CustomView
Source§fn clone(&self) -> CustomView
fn clone(&self) -> CustomView
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more