pub type CreateCardResponseContent = Card;Expand description
CreateCardResponseContent, as the model names it.
Aliased Type§
pub struct CreateCardResponseContent {Show 23 fields
pub id: String,
pub number: i32,
pub title: String,
pub status: String,
pub description: Option<String>,
pub description_html: Option<String>,
pub image_url: Option<String>,
pub has_attachments: bool,
pub tags: Option<Vec<String>>,
pub closed: bool,
pub postponed: bool,
pub golden: bool,
pub last_active_at: Option<DateTime<Utc>>,
pub created_at: DateTime<Utc>,
pub url: String,
pub board: Option<Board>,
pub column: Option<Column>,
pub creator: Option<User>,
pub assignees: Option<Vec<User>>,
pub has_more_assignees: Option<bool>,
pub comments_url: Option<String>,
pub reactions_url: Option<String>,
pub steps: Option<Vec<Step>>,
}Fields§
§id: Stringid.
number: i32number.
title: Stringtitle.
status: Stringstatus.
description: Option<String>description.
description_html: Option<String>description_html.
image_url: Option<String>image_url.
has_attachments: boolhas_attachments.
tags.
closed: boolclosed.
postponed: boolpostponed.
golden: boolgolden.
last_active_at: Option<DateTime<Utc>>last_active_at.
created_at: DateTime<Utc>created_at.
url: Stringurl.
board: Option<Board>board.
column: Option<Column>column.
creator: Option<User>creator.
assignees: Option<Vec<User>>assignees.
has_more_assignees: Option<bool>has_more_assignees.
comments_url: Option<String>comments_url.
reactions_url: Option<String>reactions_url.
steps: Option<Vec<Step>>steps.