com.volcengine.model.video_aiot.response.DeviceQueryPresetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.video_aiot.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
public class DeviceQueryPresetResponse {
@JSONField(name = "ResponseMetadata")
private ResponseMetadata responseMetadata;
@JSONField(name = "Result")
private PresetInfo presetInfo;
@NoArgsConstructor
@Data
public static class PresetInfo {
@JSONField(name = "Num")
public Integer num;
@JSONField(name = "Items")
public List items;
}
public static class PresetItem {
@JSONField(name = "PresetID")
public Integer presetID;
@JSONField(name = "PresetName")
public String presetName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy