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