com.aliyun.dingtalkbizfinance_2_0.models.LinkCommonInvokeRequest 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.dingtalkbizfinance_2_0.models;
import com.aliyun.tea.*;
public class LinkCommonInvokeRequest extends TeaModel {
/**
* example:
* TEST
*/
@NameInMap("bizType")
public String bizType;
/**
* example:
* "{"key":"value"}"
*/
@NameInMap("data")
public String data;
/**
* example:
* INOVKE_XXX
*/
@NameInMap("invokeId")
public String invokeId;
/**
* example:
* abc
*/
@NameInMap("userId")
public String userId;
public static LinkCommonInvokeRequest build(java.util.Map map) throws Exception {
LinkCommonInvokeRequest self = new LinkCommonInvokeRequest();
return TeaModel.build(map, self);
}
public LinkCommonInvokeRequest setBizType(String bizType) {
this.bizType = bizType;
return this;
}
public String getBizType() {
return this.bizType;
}
public LinkCommonInvokeRequest setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public LinkCommonInvokeRequest setInvokeId(String invokeId) {
this.invokeId = invokeId;
return this;
}
public String getInvokeId() {
return this.invokeId;
}
public LinkCommonInvokeRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}