-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBadge.java
More file actions
71 lines (54 loc) · 1.47 KB
/
Copy pathBadge.java
File metadata and controls
71 lines (54 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.traitify.models;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Badge {
private String image_small;
private String image_medium;
private String image_large;
private String font_color;
private String color_1;
private String color_2;
private String color_3;
public String getImage_small() {
return image_small;
}
public void setImage_small(String image_small) {
this.image_small = image_small;
}
public String getImage_medium() {
return image_medium;
}
public void setImage_medium(String image_medium) {
this.image_medium = image_medium;
}
public String getImage_large() {
return image_large;
}
public void setImage_large(String image_large) {
this.image_large = image_large;
}
public String getFont_color() {
return font_color;
}
public void setFont_color(String font_color) {
this.font_color = font_color;
}
public String getColor_1() {
return color_1;
}
public void setColor_1(String color_1) {
this.color_1 = color_1;
}
public String getColor_2() {
return color_2;
}
public void setColor_2(String color_2) {
this.color_2 = color_2;
}
public String getColor_3() {
return color_3;
}
public void setColor_3(String color_3) {
this.color_3 = color_3;
}
}