pub struct EntityExternalLink {
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub url: Option<String>,
pub label: Option<String>,
pub sort_order: Option<f64>,
pub creator: Option<User>,
pub initiative: Option<Initiative>,
}Expand description
An external link attached to a Linear entity such as an initiative, project, team, release, or cycle. External links provide a way to reference related resources outside of Linear (e.g., documentation, design files, dashboards) directly from the entity’s resources section. Each link has a URL, display label, and sort order within its parent entity.
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.
url: Option<String>The link’s URL.
label: Option<String>The link’s label.
sort_order: Option<f64>The sort order of this link within the parent entity’s resources list. Links are sorted together with documents and other resources attached to the entity.
creator: Option<User>The user who created the link.
initiative: Option<Initiative>The initiative that the link is associated with.
Trait Implementations§
Source§impl Clone for EntityExternalLink
impl Clone for EntityExternalLink
Source§fn clone(&self) -> EntityExternalLink
fn clone(&self) -> EntityExternalLink
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more