-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPreview.java
More file actions
25 lines (20 loc) · 845 Bytes
/
Preview.java
File metadata and controls
25 lines (20 loc) · 845 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
package io.quicktype;
import java.util.Map;
import com.fasterxml.jackson.annotation.*;
public class Preview {
private Image[] images;
private boolean enabled;
private RedditVideoPreview redditVideoPreview;
@JsonProperty("images")
public Image[] getImages() { return images; }
@JsonProperty("images")
public void setImages(Image[] value) { this.images = value; }
@JsonProperty("enabled")
public boolean getEnabled() { return enabled; }
@JsonProperty("enabled")
public void setEnabled(boolean value) { this.enabled = value; }
@JsonProperty("reddit_video_preview")
public RedditVideoPreview getRedditVideoPreview() { return redditVideoPreview; }
@JsonProperty("reddit_video_preview")
public void setRedditVideoPreview(RedditVideoPreview value) { this.redditVideoPreview = value; }
}