Struct storyboard_client::Story[][src]

pub struct Story {
    pub creator_id: Option<i32>,
    pub description: String,
    pub due_dates: Option<Vec<i32>>,
    pub is_bug: bool,
    pub private: bool,
    pub status: String,
    pub story_type_id: Option<i32>,
    pub tags: Vec<String>,
    pub task_statuses: Vec<TaskStatusCount>,
    pub teams: Vec<Team>,
    pub title: String,
    pub users: Vec<User>,
    pub id: i32,
}

A type that represents a story in storyboard.

Fields

The ID of the story creator.

A complete description of the story.

The due dates related with this story.

There is a (possible) flaw in the design of the API. In the Task type the due_dates are retrieved as DateTime, however, in the story case, the API returns an array of integers.`

If the story is a bug or a feature.

If the story is private.

The current status of the story.

The ID of the story type.

The list of tags associated with this story.

The statuses of the tasks within this story.

The teams related with this story.

A descriptive label for the story.

The set of users with permissions to see this story if it is private.

The ID of the story.

Trait Implementations

impl Debug for Story
[src]

Formats the value using the given formatter. Read more

impl Default for Story
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for Story

impl Sync for Story