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

com.aliyun.dingtalkdoc_1_0.models.SetRowHeightRequest 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 SetRowHeightRequest extends TeaModel {
    @NameInMap("height")
    public Integer height;

    @NameInMap("row")
    public Integer row;

    /**
     * 

This parameter is required.

* * example: *

ppgAQuHfOoNVpJiStDwWCEgiEiE

*/ @NameInMap("operatorId") public String operatorId; public static SetRowHeightRequest build(java.util.Map map) throws Exception { SetRowHeightRequest self = new SetRowHeightRequest(); return TeaModel.build(map, self); } public SetRowHeightRequest setHeight(Integer height) { this.height = height; return this; } public Integer getHeight() { return this.height; } public SetRowHeightRequest setRow(Integer row) { this.row = row; return this; } public Integer getRow() { return this.row; } public SetRowHeightRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy