- data Error
- data Story = Story {
- storyArchived :: Bool
- storyAssigneeId :: Maybe Int
- storyBranch :: Maybe String
- storyCreatedAt :: String
- storyDeleted :: Bool
- storyDesignNeeded :: Bool
- storyDevelopmentNeeded :: Bool
- storyId :: Int
- storyIdeaId :: Maybe Int
- storyIterationId :: Int
- storyPoints :: Int
- storyPosition :: Int
- storyState :: String
- storyTaskType :: String
- storyTitle :: String
- storyUpdatedAt :: String
- storyUserId :: Int
- storyCommentsCount :: Int
- storyAssigneeName :: Maybe String
- storyUserName :: String
- storyStateEvents :: [String]
- storyIdeaSubject :: Maybe String
- data Iteration = Iteration {
- iterationAcceptedPoints :: Int
- iterationIsComplete :: Bool
- iterationCreatedAt :: String
- iterationEstimatedPoints :: Int
- iterationEstimatedVelocity :: Int
- iterationId :: Int
- iterationStartsOn :: String
- iterationStoriesCount :: Int
- iterationTeamStrength :: Int
- iterationUpdatedAt :: String
- iterationPercentComplete :: Int
- iterationIsCurrent :: Bool
- iterationUnstartedStoriesCount :: Int
- iterationAcceptedStoriesCount :: Int
- iterationStartedStoriesCount :: Int
- iterationDeliveredStoriesCount :: Int
- iterationCommentsCount :: Int
Documentation
Errors have been tagged according to their source, so you can more easily dispatch and handle them.
HTTPConnectionError IOException | A HTTP error occurred. The actual caught error is included, if available. |
ParseError String | An error in the parser itself. |
JsonError String | The JSON is malformed or unexpected. |
UserError String | Incorrect input. |
A Trajectory story.
Story | |
|
An iteration in Trajectory. The iterationStartsOn is the most
user-identifying string, though it changes with time. The storyIterationId
is the same as the iterationId
.