com.aliyun.dingtalkedu_1_0.models.CardDeleteCardRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class CardDeleteCardRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* industry_center
*/
@NameInMap("cardBizCode")
public String cardBizCode;
/**
* example:
* 23424234
*/
@NameInMap("cardBizId")
public String cardBizId;
/**
* This parameter is required.
*
* example:
* 234234234
*/
@NameInMap("cardId")
public Long cardId;
/**
* This parameter is required.
*
* example:
* YUFANAI
*/
@NameInMap("sourceType")
public String sourceType;
/**
* This parameter is required.
*
* example:
* 234234234
*/
@NameInMap("userId")
public String userId;
public static CardDeleteCardRequest build(java.util.Map map) throws Exception {
CardDeleteCardRequest self = new CardDeleteCardRequest();
return TeaModel.build(map, self);
}
public CardDeleteCardRequest setCardBizCode(String cardBizCode) {
this.cardBizCode = cardBizCode;
return this;
}
public String getCardBizCode() {
return this.cardBizCode;
}
public CardDeleteCardRequest setCardBizId(String cardBizId) {
this.cardBizId = cardBizId;
return this;
}
public String getCardBizId() {
return this.cardBizId;
}
public CardDeleteCardRequest setCardId(Long cardId) {
this.cardId = cardId;
return this;
}
public Long getCardId() {
return this.cardId;
}
public CardDeleteCardRequest setSourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
public String getSourceType() {
return this.sourceType;
}
public CardDeleteCardRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}