All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.green20220302.models.ImageBatchModerationRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.green20220302.models;

import com.aliyun.tea.*;

public class ImageBatchModerationRequest extends TeaModel {
    /**
     * 

The types of detection supported by the enhanced image review, separated by English commas. Values:

*
    *
  • baselineCheck:General Baseline Detection
  • *
  • baselineCheck_pro:General Baseline Detection_Pro Edition
  • *
  • tonalityImprove:Content governance monitoring
  • *
  • aigcCheck:AIGC image detection
  • *
* * example: *

baselineCheck,tonalityImprove

*/ @NameInMap("Service") public String service; /** *

The set of relevant parameters for content detection objects.

* * example: *

{ * "imageUrl": "https://img.alicdn.com/tfs/TB1U4r9AeH2gK0jSZJnXXaT1FXa-2880-480.png", * "dataId": "img123****" * }

*/ @NameInMap("ServiceParameters") public String serviceParameters; public static ImageBatchModerationRequest build(java.util.Map map) throws Exception { ImageBatchModerationRequest self = new ImageBatchModerationRequest(); return TeaModel.build(map, self); } public ImageBatchModerationRequest setService(String service) { this.service = service; return this; } public String getService() { return this.service; } public ImageBatchModerationRequest setServiceParameters(String serviceParameters) { this.serviceParameters = serviceParameters; return this; } public String getServiceParameters() { return this.serviceParameters; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy