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

com.aliyun.dingtalkdoc_1_0.models.BatchRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class BatchRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("requests") public java.util.List requests; /** *

This parameter is required.

* * example: *

ppgAQuHxxxxx

*/ @NameInMap("operatorId") public String operatorId; public static BatchRequest build(java.util.Map map) throws Exception { BatchRequest self = new BatchRequest(); return TeaModel.build(map, self); } public BatchRequest setRequests(java.util.List requests) { this.requests = requests; return this; } public java.util.List getRequests() { return this.requests; } public BatchRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public static class BatchRequestRequests extends TeaModel { /** * if can be null: *

true

*/ @NameInMap("body") public Object body; /** *

This parameter is required.

* * example: *

get

*/ @NameInMap("method") public String method; /** *

This parameter is required.

* * example: *

sheets

*/ @NameInMap("path") public String path; public static BatchRequestRequests build(java.util.Map map) throws Exception { BatchRequestRequests self = new BatchRequestRequests(); return TeaModel.build(map, self); } public BatchRequestRequests setBody(Object body) { this.body = body; return this; } public Object getBody() { return this.body; } public BatchRequestRequests setMethod(String method) { this.method = method; return this; } public String getMethod() { return this.method; } public BatchRequestRequests setPath(String path) { this.path = path; return this; } public String getPath() { return this.path; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy