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

com.aliyun.dingtalkconnector_1_0.models.SearchActionsRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkconnector_1_0.models;

import com.aliyun.tea.*;

public class SearchActionsRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

G-CONN-1015BC8093540B01B8D0000Q

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

This parameter is required.

* * example: *

ding32fff839a3e0105d

*/ @NameInMap("connectorProviderCorpId") public String connectorProviderCorpId; /** * if can be null: *

true

*/ @NameInMap("integrationTypes") public java.util.List integrationTypes; /** * example: *

20

*/ @NameInMap("maxResults") public Integer maxResults; /** * example: *

0

* * if can be null: *

true

*/ @NameInMap("nextToken") public String nextToken; public static SearchActionsRequest build(java.util.Map map) throws Exception { SearchActionsRequest self = new SearchActionsRequest(); return TeaModel.build(map, self); } public SearchActionsRequest setConnectorId(String connectorId) { this.connectorId = connectorId; return this; } public String getConnectorId() { return this.connectorId; } public SearchActionsRequest setConnectorProviderCorpId(String connectorProviderCorpId) { this.connectorProviderCorpId = connectorProviderCorpId; return this; } public String getConnectorProviderCorpId() { return this.connectorProviderCorpId; } public SearchActionsRequest setIntegrationTypes(java.util.List integrationTypes) { this.integrationTypes = integrationTypes; return this; } public java.util.List getIntegrationTypes() { return this.integrationTypes; } public SearchActionsRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public SearchActionsRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy