![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalklink_1_0.models.CallbackRegiesterRequest 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.dingtalklink_1_0.models;
import com.aliyun.tea.*;
public class CallbackRegiesterRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 3b89df4dfaaccd5b8e1f9a2
*/
@NameInMap("apiSecret")
public String apiSecret;
/**
* This parameter is required.
*
* example:
* abc-123
*/
@NameInMap("callbackKey")
public String callbackKey;
/**
* This parameter is required.
*
* example:
*
*/
@NameInMap("callbackUrl")
public String callbackUrl;
/**
* This parameter is required.
*
* example:
* shortcut
*/
@NameInMap("type")
public String type;
public static CallbackRegiesterRequest build(java.util.Map map) throws Exception {
CallbackRegiesterRequest self = new CallbackRegiesterRequest();
return TeaModel.build(map, self);
}
public CallbackRegiesterRequest setApiSecret(String apiSecret) {
this.apiSecret = apiSecret;
return this;
}
public String getApiSecret() {
return this.apiSecret;
}
public CallbackRegiesterRequest setCallbackKey(String callbackKey) {
this.callbackKey = callbackKey;
return this;
}
public String getCallbackKey() {
return this.callbackKey;
}
public CallbackRegiesterRequest setCallbackUrl(String callbackUrl) {
this.callbackUrl = callbackUrl;
return this;
}
public String getCallbackUrl() {
return this.callbackUrl;
}
public CallbackRegiesterRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy