pub struct DocumentContent {Show 15 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub content: Option<String>,
pub content_state: Option<String>,
pub issue: Option<Box<Issue>>,
pub pull_request: Option<Box<PullRequest>>,
pub project: Option<Box<Project>>,
pub initiative: Option<Box<Initiative>>,
pub project_milestone: Option<Box<ProjectMilestone>>,
pub document: Option<Box<Document>>,
pub ai_prompt_rules: Option<Box<AiPromptRules>>,
pub welcome_message: Option<Box<WelcomeMessage>>,
pub restored_at: Option<DateTime<Utc>>,
}Expand description
A document content for a project.
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.
content: Option<String>The document content in markdown format.
content_state: Option<String>The document content state as a base64 encoded string.
issue: Option<Box<Issue>>The issue that the content is associated with.
pull_request: Option<Box<PullRequest>>Internal The pull request that the content is associated with.
project: Option<Box<Project>>The project that the content is associated with.
initiative: Option<Box<Initiative>>The initiative that the content is associated with.
project_milestone: Option<Box<ProjectMilestone>>The project milestone that the content is associated with.
document: Option<Box<Document>>The document that the content is associated with.
ai_prompt_rules: Option<Box<AiPromptRules>>The AI prompt rules that the content is associated with.
welcome_message: Option<Box<WelcomeMessage>>The welcome message that the content is associated with.
restored_at: Option<DateTime<Utc>>The time at which the document content was restored from a previous version.
Trait Implementations§
Source§impl Clone for DocumentContent
impl Clone for DocumentContent
Source§fn clone(&self) -> DocumentContent
fn clone(&self) -> DocumentContent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more