com.aliyun.imageaudit.models.ScanImageRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imafeaudit Show documentation
Show all versions of imafeaudit Show documentation
Aliyun IMAFEAUDIT SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.imageaudit.models;
import com.aliyun.tea.*;
public class ScanImageRequest extends TeaModel {
@NameInMap("Task")
@Validation(required = true)
public java.util.List task;
@NameInMap("Scene")
@Validation(required = true)
public java.util.List scene;
public static ScanImageRequest build(java.util.Map map) throws Exception {
ScanImageRequest self = new ScanImageRequest();
return TeaModel.build(map, self);
}
public static class ScanImageRequestTask extends TeaModel {
@NameInMap("DataId")
public String dataId;
@NameInMap("ImageURL")
@Validation(required = true)
public String imageURL;
@NameInMap("ImageTimeMillisecond")
public Long imageTimeMillisecond;
@NameInMap("Interval")
public Integer interval;
@NameInMap("MaxFrames")
public Integer maxFrames;
public static ScanImageRequestTask build(java.util.Map map) throws Exception {
ScanImageRequestTask self = new ScanImageRequestTask();
return TeaModel.build(map, self);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy