/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package vn.mobile.id.objects; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; /** * * @author TuoiCM */ @JsonIgnoreProperties(ignoreUnknown = true) @JsonInclude(JsonInclude.Include.NON_NULL) public class FmsUuidListJsonObject { private BaseUuidList frames; private BaseUuidList videos; @JsonProperty("frames") public BaseUuidList getFrames() { return frames; } public void setFrames(BaseUuidList frames) { this.frames = frames; } @JsonProperty("videos") public BaseUuidList getVideos() { return videos; } public void setVideos(BaseUuidList videos) { this.videos = videos; } }