package org.mian.gitnex.models; import java.util.List; /** * Author M M Arif */ public class CreateIssue { private String body; private boolean closed; private String due_date; private int milestone; private String title; private List assignees; private List labels; public CreateIssue(String assignee, String body, boolean closed, String due_date, int milestone, String title, List assignees, List labels) { this.body = body; this.closed = closed; this.due_date = due_date; this.milestone = milestone; this.title = title; this.assignees = assignees; this.labels = labels; } public CreateIssue(String title, String body, String due_date, int milestone) { this.title = title; this.body = body; this.due_date = due_date; this.milestone = milestone; } private class Assignees { } private class Labels { } }