SubscribeNotification.java
872 Bytes
package com.objecteye.pojo.viid.subscribe;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.objecteye.pojo.viid.detail.FaceRequestObject;
import com.objecteye.pojo.viid.detail.MotorVehicleRequestObject;
import lombok.Data;
/**
* @author: liuhaoyu
* @date: 2023/7/6
*/
@Data
public class SubscribeNotification {
@JsonProperty("NotificationID")
private String notificationId;
@JsonProperty("SubscribeID")
private String subscribeId;
@JsonProperty("Title")
private String title;
@JsonProperty("TriggerTime")
private String triggerTime;
@JsonProperty("InfoIDs")
private String infoIds;
@JsonProperty("FaceListObject")
private FaceRequestObject.FaceListObject faceListObject;
@JsonProperty("MotorVehicleListObject")
private MotorVehicleRequestObject.MotorVehicleListObject motorVehicleListObject;
}