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

com.aliyun.dingtalkdoc_1_0.models.SetColumnWidthRequest 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_1_0.models;

import com.aliyun.tea.*;

public class SetColumnWidthRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("column") public Integer column; /** *

This parameter is required.

*/ @NameInMap("width") public Integer width; /** *

This parameter is required.

* * example: *

ppgAQuHfOoNVpJiStDwWCEgiEiE

*/ @NameInMap("operatorId") public String operatorId; public static SetColumnWidthRequest build(java.util.Map map) throws Exception { SetColumnWidthRequest self = new SetColumnWidthRequest(); return TeaModel.build(map, self); } public SetColumnWidthRequest setColumn(Integer column) { this.column = column; return this; } public Integer getColumn() { return this.column; } public SetColumnWidthRequest setWidth(Integer width) { this.width = width; return this; } public Integer getWidth() { return this.width; } public SetColumnWidthRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy