com.aliyun.dingtalkdoc_1_0.models.CreateDeveloperMetadataRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_1_0.models;
import com.aliyun.tea.*;
public class CreateDeveloperMetadataRequest extends TeaModel {
@NameInMap("associatedColumn")
public CreateDeveloperMetadataRequestAssociatedColumn associatedColumn;
@NameInMap("associatedRow")
public CreateDeveloperMetadataRequestAssociatedRow associatedRow;
@NameInMap("value")
public String value;
/**
* This parameter is required.
*
* example:
* ppgAQuHfOoNVpJiStDwWCEgiEiE
*/
@NameInMap("operatorId")
public String operatorId;
public static CreateDeveloperMetadataRequest build(java.util.Map map) throws Exception {
CreateDeveloperMetadataRequest self = new CreateDeveloperMetadataRequest();
return TeaModel.build(map, self);
}
public CreateDeveloperMetadataRequest setAssociatedColumn(CreateDeveloperMetadataRequestAssociatedColumn associatedColumn) {
this.associatedColumn = associatedColumn;
return this;
}
public CreateDeveloperMetadataRequestAssociatedColumn getAssociatedColumn() {
return this.associatedColumn;
}
public CreateDeveloperMetadataRequest setAssociatedRow(CreateDeveloperMetadataRequestAssociatedRow associatedRow) {
this.associatedRow = associatedRow;
return this;
}
public CreateDeveloperMetadataRequestAssociatedRow getAssociatedRow() {
return this.associatedRow;
}
public CreateDeveloperMetadataRequest setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
public CreateDeveloperMetadataRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public static class CreateDeveloperMetadataRequestAssociatedColumn extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("column")
public Integer column;
/**
* This parameter is required.
*/
@NameInMap("sheet")
public String sheet;
public static CreateDeveloperMetadataRequestAssociatedColumn build(java.util.Map map) throws Exception {
CreateDeveloperMetadataRequestAssociatedColumn self = new CreateDeveloperMetadataRequestAssociatedColumn();
return TeaModel.build(map, self);
}
public CreateDeveloperMetadataRequestAssociatedColumn setColumn(Integer column) {
this.column = column;
return this;
}
public Integer getColumn() {
return this.column;
}
public CreateDeveloperMetadataRequestAssociatedColumn setSheet(String sheet) {
this.sheet = sheet;
return this;
}
public String getSheet() {
return this.sheet;
}
}
public static class CreateDeveloperMetadataRequestAssociatedRow extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("row")
public Integer row;
/**
* This parameter is required.
*/
@NameInMap("sheet")
public String sheet;
public static CreateDeveloperMetadataRequestAssociatedRow build(java.util.Map map) throws Exception {
CreateDeveloperMetadataRequestAssociatedRow self = new CreateDeveloperMetadataRequestAssociatedRow();
return TeaModel.build(map, self);
}
public CreateDeveloperMetadataRequestAssociatedRow setRow(Integer row) {
this.row = row;
return this;
}
public Integer getRow() {
return this.row;
}
public CreateDeveloperMetadataRequestAssociatedRow setSheet(String sheet) {
this.sheet = sheet;
return this;
}
public String getSheet() {
return this.sheet;
}
}
}