com.aliyun.green20220302.models.FileModerationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of green20220302 Show documentation
Show all versions of green20220302 Show documentation
Alibaba Cloud Green (20220302) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.green20220302.models;
import com.aliyun.tea.*;
public class FileModerationRequest extends TeaModel {
@NameInMap("Service")
public String service;
@NameInMap("ServiceParameters")
public String serviceParameters;
public static FileModerationRequest build(java.util.Map map) throws Exception {
FileModerationRequest self = new FileModerationRequest();
return TeaModel.build(map, self);
}
public FileModerationRequest setService(String service) {
this.service = service;
return this;
}
public String getService() {
return this.service;
}
public FileModerationRequest setServiceParameters(String serviceParameters) {
this.serviceParameters = serviceParameters;
return this;
}
public String getServiceParameters() {
return this.serviceParameters;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy