View Javadoc

1   package com.atlassian.plugins.rest.doclet.generators.schema.beans.issue;
2   
3   import org.codehaus.jackson.annotate.JsonProperty;
4   
5   import java.util.Map;
6   
7   /**
8    * @since v5.0
9    */
10  public class UserJsonBean
11  {
12      @JsonProperty
13      private String self;
14  
15      @JsonProperty
16      private String name;
17  
18      @JsonProperty
19      private String key;
20  
21      @JsonProperty
22      private String emailAddress;
23  
24      @JsonProperty
25      private Map<String, String> avatarUrls;
26  
27      @JsonProperty
28      private String displayName;
29  
30      @JsonProperty
31      private boolean active;
32  
33      @JsonProperty
34      private String timeZone;
35  }
36