com.aliyun.green20220302.models.VoiceModerationCancelRequest 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 VoiceModerationCancelRequest extends TeaModel {
@NameInMap("Service")
public String service;
@NameInMap("ServiceParameters")
public String serviceParameters;
public static VoiceModerationCancelRequest build(java.util.Map map) throws Exception {
VoiceModerationCancelRequest self = new VoiceModerationCancelRequest();
return TeaModel.build(map, self);
}
public VoiceModerationCancelRequest setService(String service) {
this.service = service;
return this;
}
public String getService() {
return this.service;
}
public VoiceModerationCancelRequest setServiceParameters(String serviceParameters) {
this.serviceParameters = serviceParameters;
return this;
}
public String getServiceParameters() {
return this.serviceParameters;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy