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

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

There is a newer version: 2.1.30
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 RangeFindNextResponseBody extends TeaModel {
    // 找到的单元格的地址,使用A1表示法
    @NameInMap("a1Notation")
    public String a1Notation;

    public static RangeFindNextResponseBody build(java.util.Map map) throws Exception {
        RangeFindNextResponseBody self = new RangeFindNextResponseBody();
        return TeaModel.build(map, self);
    }

    public RangeFindNextResponseBody setA1Notation(String a1Notation) {
        this.a1Notation = a1Notation;
        return this;
    }
    public String getA1Notation() {
        return this.a1Notation;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy