-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImage.java
More file actions
31 lines (25 loc) · 937 Bytes
/
Image.java
File metadata and controls
31 lines (25 loc) · 937 Bytes
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
package io.quicktype;
import java.util.Map;
import com.fasterxml.jackson.annotation.*;
public class Image {
private Source source;
private Source[] resolutions;
private Variants variants;
private String id;
@JsonProperty("source")
public Source getSource() { return source; }
@JsonProperty("source")
public void setSource(Source value) { this.source = value; }
@JsonProperty("resolutions")
public Source[] getResolutions() { return resolutions; }
@JsonProperty("resolutions")
public void setResolutions(Source[] value) { this.resolutions = value; }
@JsonProperty("variants")
public Variants getVariants() { return variants; }
@JsonProperty("variants")
public void setVariants(Variants value) { this.variants = value; }
@JsonProperty("id")
public String getID() { return id; }
@JsonProperty("id")
public void setID(String value) { this.id = value; }
}