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

com.aliyun.dingtalkdoc_2_0.models.CreateDentryRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_2_0.models;

import com.aliyun.tea.*;

public class CreateDentryRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

file

*/ @NameInMap("dentryType") public String dentryType; /** * example: *

0

*/ @NameInMap("documentType") public Long documentType; /** *

This parameter is required.

* * example: *

dingtalk

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

This parameter is required.

* * example: *

abc

*/ @NameInMap("operatorId") public String operatorId; /** * example: *

abcedf

*/ @NameInMap("parentDentryId") public String parentDentryId; public static CreateDentryRequest build(java.util.Map map) throws Exception { CreateDentryRequest self = new CreateDentryRequest(); return TeaModel.build(map, self); } public CreateDentryRequest setDentryType(String dentryType) { this.dentryType = dentryType; return this; } public String getDentryType() { return this.dentryType; } public CreateDentryRequest setDocumentType(Long documentType) { this.documentType = documentType; return this; } public Long getDocumentType() { return this.documentType; } public CreateDentryRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public CreateDentryRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public CreateDentryRequest setParentDentryId(String parentDentryId) { this.parentDentryId = parentDentryId; return this; } public String getParentDentryId() { return this.parentDentryId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy