com.aliyun.dingtalkedu_1_0.models.CardGetCardRequest 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 CardGetCardRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("cardId")
public Long cardId;
/**
* This parameter is required.
*/
@NameInMap("sourceType")
public String sourceType;
public static CardGetCardRequest build(java.util.Map map) throws Exception {
CardGetCardRequest self = new CardGetCardRequest();
return TeaModel.build(map, self);
}
public CardGetCardRequest setCardId(Long cardId) {
this.cardId = cardId;
return this;
}
public Long getCardId() {
return this.cardId;
}
public CardGetCardRequest setSourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
public String getSourceType() {
return this.sourceType;
}
}