GithubTicketResponse.java 457 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package de.hftstuttgart.unifiedticketing.systems.github;

import java.util.Set;

public class GithubTicketResponse
{
    public Set<Assignee> assignees;
    public String body;
    public int number;
    public Set<Label> labels;
    public String state;
    public String title;

    protected static class Label
    {
        public String name;
    }

    protected static class Assignee
    {
        public int id;
        public String login;
    }
}