![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkconnector_1_0.models.CreateInvocableInstanceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkconnector_1_0.models;
import com.aliyun.tea.*;
public class CreateInvocableInstanceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* dca://ding32fff839a3e0105d.connect.dingtalk.com/ding32fff839a3e0105d/action/G-ACT-101FDEBD3C6E213DB474000P
*/
@NameInMap("connectAssetUri")
public String connectAssetUri;
/**
* This parameter is required.
*
* example:
* SAMPLE
*/
@NameInMap("instanceKey")
public String instanceKey;
public static CreateInvocableInstanceRequest build(java.util.Map map) throws Exception {
CreateInvocableInstanceRequest self = new CreateInvocableInstanceRequest();
return TeaModel.build(map, self);
}
public CreateInvocableInstanceRequest setConnectAssetUri(String connectAssetUri) {
this.connectAssetUri = connectAssetUri;
return this;
}
public String getConnectAssetUri() {
return this.connectAssetUri;
}
public CreateInvocableInstanceRequest setInstanceKey(String instanceKey) {
this.instanceKey = instanceKey;
return this;
}
public String getInstanceKey() {
return this.instanceKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy