com.aliyun.sas20181203.models.QueryAssetDetailByUUIDRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class QueryAssetDetailByUUIDRequest extends TeaModel {
/**
* example:
* {
* "AliUid": "176618589410****",
* "UuidList": [
* "429fe207-3014-40c6-972b-cdff1d7a****",
* "429fe207-3014-40c6-972b-cdff1d7b****",
* "429fe207-3014-40c6-972b-cdff1d7c****"
* ]
* }
*/
@NameInMap("Requests")
public String requests;
public static QueryAssetDetailByUUIDRequest build(java.util.Map map) throws Exception {
QueryAssetDetailByUUIDRequest self = new QueryAssetDetailByUUIDRequest();
return TeaModel.build(map, self);
}
public QueryAssetDetailByUUIDRequest setRequests(String requests) {
this.requests = requests;
return this;
}
public String getRequests() {
return this.requests;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy