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

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

The 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 RangeFindNextRequest extends TeaModel {
    @NameInMap("findOptions")
    public RangeFindNextRequestFindOptions findOptions;

    /**
     * 

This parameter is required.

* * example: *

DingTalk

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

This parameter is required.

*/ @NameInMap("operatorId") public String operatorId; public static RangeFindNextRequest build(java.util.Map map) throws Exception { RangeFindNextRequest self = new RangeFindNextRequest(); return TeaModel.build(map, self); } public RangeFindNextRequest setFindOptions(RangeFindNextRequestFindOptions findOptions) { this.findOptions = findOptions; return this; } public RangeFindNextRequestFindOptions getFindOptions() { return this.findOptions; } public RangeFindNextRequest setText(String text) { this.text = text; return this; } public String getText() { return this.text; } public RangeFindNextRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public static class RangeFindNextRequestFindOptions extends TeaModel { @NameInMap("includeHidden") public Boolean includeHidden; /** * example: *

true

*/ @NameInMap("matchCase") public Boolean matchCase; /** * example: *

true

*/ @NameInMap("matchEntireCell") public Boolean matchEntireCell; /** * example: *

true

*/ @NameInMap("matchFormulaText") public Boolean matchFormulaText; @NameInMap("scope") public String scope; /** * example: *

true

*/ @NameInMap("useRegExp") public Boolean useRegExp; public static RangeFindNextRequestFindOptions build(java.util.Map map) throws Exception { RangeFindNextRequestFindOptions self = new RangeFindNextRequestFindOptions(); return TeaModel.build(map, self); } public RangeFindNextRequestFindOptions setIncludeHidden(Boolean includeHidden) { this.includeHidden = includeHidden; return this; } public Boolean getIncludeHidden() { return this.includeHidden; } public RangeFindNextRequestFindOptions setMatchCase(Boolean matchCase) { this.matchCase = matchCase; return this; } public Boolean getMatchCase() { return this.matchCase; } public RangeFindNextRequestFindOptions setMatchEntireCell(Boolean matchEntireCell) { this.matchEntireCell = matchEntireCell; return this; } public Boolean getMatchEntireCell() { return this.matchEntireCell; } public RangeFindNextRequestFindOptions setMatchFormulaText(Boolean matchFormulaText) { this.matchFormulaText = matchFormulaText; return this; } public Boolean getMatchFormulaText() { return this.matchFormulaText; } public RangeFindNextRequestFindOptions setScope(String scope) { this.scope = scope; return this; } public String getScope() { return this.scope; } public RangeFindNextRequestFindOptions setUseRegExp(Boolean useRegExp) { this.useRegExp = useRegExp; return this; } public Boolean getUseRegExp() { return this.useRegExp; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy