All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.CardGetCardRequest Maven / Gradle / Ivy

There is a newer version: 2.1.50
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy