ExClubhouse v0.6.0 ExClubhouse.Model.Story View Source

Story model

Link to this section Summary

Link to this section Types

Link to this type

t()

View Source
t() :: %ExClubhouse.Model.Story{
  app_url: binary(),
  archived: boolean(),
  blocked: boolean(),
  blocker: boolean(),
  branches: [ExClubhouse.Model.Branch.t()],
  comments: [ExClubhouse.Model.Comment.t()],
  commits: [ExClubhouse.Model.Commit.t()],
  completed: boolean(),
  completed_at: binary() | nil,
  completed_at_override: binary() | nil,
  created_at: binary(),
  cycle_time: integer(),
  deadline: binary() | nil,
  description: binary(),
  entity_type: binary(),
  epic_id: integer() | nil,
  estimate: integer() | nil,
  external_id: binary() | nil,
  external_tickets: [ExClubhouse.Model.ExternalTicket.t()],
  files: [ExClubhouse.Model.File.t()],
  follower_ids: [binary()],
  group_mention_ids: [binary()],
  id: integer(),
  iteration_id: integer() | nil,
  labels: [ExClubhouse.Model.Label.t()],
  linked_files: [ExClubhouse.Model.LinkedFile.t()],
  member_mention_ids: [binary()],
  mention_ids: [binary()],
  moved_at: binary() | nil,
  name: binary(),
  owner_ids: [binary()],
  position: integer(),
  previous_iteration_ids: [integer()],
  project_id: integer(),
  pull_requests: [ExClubhouse.Model.PullRequest.t()],
  requested_by_id: binary(),
  started: binary() | nil,
  started_at: binary() | nil,
  started_at_override: binary() | nil,
  stats: ExClubhouse.Model.StoryStats.t(),
  story_links: [ExClubhouse.Model.TypedStoryLink.t()],
  story_type: binary(),
  tasks: [ExClubhouse.Model.Task.t()],
  updated_at: binary() | nil,
  workflow_state_id: integer()
}