Menu

[efa3d9]: / src / jira-issue.h  Maximize  Restore  History

Download this file

46 lines (41 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef JIRAISSUE_H
#define JIRAISSUE_H
#include <QJsonObject>
class JiraIssue{
public:
JiraIssue ();
JiraIssue (const QJsonObject&);
void initFromJsonObject(const QJsonObject&);
void print() const;
bool isFinished() const;
QString assignee() const;
QString components() const;
QString description() const;
QString fixVersions() const;
QString issueType() const;
QString key() const;
QString parentKey() const;
QString reporter() const;
QString resolution() const;
QString status() const;
QString summary() const;
QString url() const;
QString issueLinks() const;
QString subTasks() const;
private:
QString assigneeInt;
QString descriptionInt;
QString keyInt;
QString issuetypeInt;
QString parentKeyInt;
QString reporterInt;
QString resolutionInt;
QString statusInt;
QString summaryInt;
QStringList componentsListInt;
QStringList fixVersionsListInt;
QStringList subTasksListInt;
QStringList issueLinksListInt;
QString jiraServerInt;
};
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.