pub struct ProjectRelation {
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub type: Option<String>,
pub project: Option<Box<Project>>,
pub project_milestone: Option<Box<ProjectMilestone>>,
pub anchor_type: Option<String>,
pub related_project: Option<Box<Project>>,
pub related_project_milestone: Option<Box<ProjectMilestone>>,
pub related_anchor_type: Option<String>,
pub user: Option<Box<User>>,
}Expand description
A relation between two projects.
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.
type: Option<String>The relationship of the project with the related project.
project: Option<Box<Project>>The project whose relationship is being described.
project_milestone: Option<Box<ProjectMilestone>>The milestone within the project whose relationship is being described.
anchor_type: Option<String>The type of anchor on the project end of the relation.
The related project.
The milestone within the related project whose relationship is being described.
The type of anchor on the relatedProject end of the relation.
user: Option<Box<User>>The last user who created or modified the relation.
Trait Implementations§
Source§impl Clone for ProjectRelation
impl Clone for ProjectRelation
Source§fn clone(&self) -> ProjectRelation
fn clone(&self) -> ProjectRelation
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more