pub struct Release {Show 19 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 version: Option<String>,
pub commit_sha: Option<String>,
pub pipeline: Option<Box<ReleasePipeline>>,
pub stage: Option<Box<ReleaseStage>>,
pub slug_id: Option<String>,
pub start_date: Option<NaiveDate>,
pub target_date: Option<NaiveDate>,
pub started_at: Option<DateTime<Utc>>,
pub completed_at: Option<DateTime<Utc>>,
pub canceled_at: Option<DateTime<Utc>>,
pub url: Option<String>,
pub documents: Option<Box<DocumentConnection>>,
pub links: Option<Box<EntityExternalLinkConnection>>,
}Expand description
Internal A release.
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 release.
description: Option<String>The release’s description.
version: Option<String>The version of the release.
commit_sha: Option<String>The commit SHA associated with this release.
pipeline: Option<Box<ReleasePipeline>>The pipeline this release belongs to.
stage: Option<Box<ReleaseStage>>The current stage of the release.
slug_id: Option<String>The release’s unique URL slug.
start_date: Option<NaiveDate>The estimated start date of the release.
target_date: Option<NaiveDate>The estimated completion date of the release.
started_at: Option<DateTime<Utc>>The time at which the release was started.
completed_at: Option<DateTime<Utc>>The time at which the release was completed.
canceled_at: Option<DateTime<Utc>>The time at which the release was canceled.
url: Option<String>Release URL.
documents: Option<Box<DocumentConnection>>Internal Documents associated with the release.
links: Option<Box<EntityExternalLinkConnection>>Internal Links associated with the release.