# Functions
NewClient Construct a new client connected to the provided server and utilizing the given context for asynchronous events.
ParseTime parse an RFC3339 string with nanoseconds.
UpdateIssueStatus attempts to change the "status" field by finding a transition which achieves the desired state and then performing that transition.
# Constants
No description provided by the author
# Variables
No description provided by the author
# Structs
ChangeLogEntry One entry in a changelog https://docs.atlassian.com/software/jira/docs/api/REST/8.2.6/#api/2/issue-getIssue.
ChangeLogItem "field-change" data within a changelog entry.
ChangeLogIterator cursor within paginated results from the /search endpoint.
ChangeLogPage A collection of changes to issue metadata https://docs.atlassian.com/software/jira/docs/api/REST/8.2.6/#api/2/issue-getIssue.
Client Thin wrapper around the http.Client providing jira-specific methods for API endpoints.
ClientTransport wraps http.RoundTripper by adding a "Content-Type=application/json" header.
Comment the JSON object for a single comment item returned in a list of comments https://docs.atlassian.com/software/jira/docs/api/REST/8.2.6/#api/2/issue-getComments.
CommentCreate the JSOn object that is POSTed to the /comment endpoint to create a new comment.
CommentIterator cursor within paginated results from the /comment endpoint.
CommentPage the JSON object holding a single page of comments returned either by direct query or within an issue query https://docs.atlassian.com/software/jira/docs/api/REST/8.2.6/#api/2/issue-getComments.
Issue Top-level object for an issue https://docs.atlassian.com/software/jira/docs/api/REST/8.2.6/#api/2/issue-getIssue.
IssueCreate the JSON object that is POSTed to the /issue endpoint to create a new issue.
IssueCreateFields fields that are included in an IssueCreate request.
IssueCreateResult the JSON object returned after issue creation.
IssueFields the JSON object returned as the "fields" member of an issue.
IssueType the JSON object representing an issue type (i.e.
Jira Main object for the bridge.
Project the JSON object representing a project.
SearchIterator cursor within paginated results from the /search endpoint.
SearchRequest the JSON object POSTed to the /search endpoint.
SearchResult The result type from querying the search endpoint https://docs.atlassian.com/software/jira/docs/api/REST/8.2.6/#api/2/search.
ServerInfo general server information returned by the /serverInfo endpoint.
Session credential cookie name/value pair received after logging in and required to be sent on all subsequent requests.
SessionQuery the JSON object that is POSTed to the /session endpoint in order to login and get a session cookie.
SessionResponse the JSON object returned from a /session query (login).
Status the JSON object representing a status (i.e.
StatusCategory the JSON object representing a status category.
Time is just a time.Time with a JSON serialization.
Transition the JSON object represenging a transition from one Status to another Status in a JIRA workflow.
TransitionList the JSON object returned from the /transitions endpoint.
User the JSON object representing a JIRA user https://docs.atlassian.com/software/jira/docs/api/REST/8.2.6/#api/2/user.