Example #1
0
        public IssueFields()
        {
            summary           = "";
            issuetype         = new IssueType();
            description       = "";
            customfield_10800 = "";
            customfield_10007 = "";
            customfield_10004 = "";
            updated           = new DateTime();
            created           = new DateTime();
            resolutiondate    = new DateTime();

            status       = new Status();
            timetracking = new Timetracking();

            labels     = new List <String>();
            comments   = new List <Comment>();
            issuelinks = new List <IssueLink>();
            attachment = new List <Attachment>();
            watchers   = new List <JiraUser>();
            reporter   = new JiraUser();
            assignee   = new JiraUser();
            parent     = new IssueRef();
            priority   = new Priority();
            project    = new ParentProject();
        }
Example #2
0
        public IssueFields()
        {
            summary = "";
            issuetype = new IssueType();
            description = "";
            customfield_10800 = "";
            customfield_10007 = "";
            customfield_10004 = "";
            updated = new DateTime();
            created = new DateTime();
            resolutiondate = new DateTime();

            status = new Status();
            timetracking = new Timetracking();

            labels = new List<String>();
            comments = new List<Comment>();
            issuelinks = new List<IssueLink>();
            attachment = new List<Attachment>();
            reporter = new JiraUser();
            assignee = new JiraUser();
            parent = new IssueRef();
            priority = new Priority();
            project = new ParentProject();
        }
Example #3
0
 public Comment()
 {
     id           = "";
     created      = new DateTime();
     updated      = new DateTime();
     author       = new JiraUser();
     updateAuthor = new JiraUser();
     body         = "";
 }
Example #4
0
 public Comment()
 {
     id = "";
     created = new DateTime();
     updated = new DateTime();
     author = new JiraUser();
     updateAuthor = new JiraUser();
     body = "";
 }