Struct storyboard_client::ProjectGroup[][src]

pub struct ProjectGroup {
    pub id: i32,
    pub name: String,
    pub title: String,
    pub created_at: DateTime<Utc>,
}

Represents a group of projects

Fields

The unique ID for the project group.

The unique name for the project group.

The full name of the project group.

Date when this project group was created.

Trait Implementations

impl Debug for ProjectGroup
[src]

Formats the value using the given formatter. Read more

impl Default for ProjectGroup
[src]

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

Auto Trait Implementations