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

com.aliyun.dingtalkdevicemng_1_0.models.UpdateCardRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdevicemng_1_0.models;

import com.aliyun.tea.*;

public class UpdateCardRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

biz-xxxxxx

*/ @NameInMap("bizId") public String bizId; /** *

This parameter is required.

* * example: *

{"var1":"xxx","var2":"xxx"}

*/ @NameInMap("cardData") public String cardData; @NameInMap("tips") public UpdateCardRequestTips tips; public static UpdateCardRequest build(java.util.Map map) throws Exception { UpdateCardRequest self = new UpdateCardRequest(); return TeaModel.build(map, self); } public UpdateCardRequest setBizId(String bizId) { this.bizId = bizId; return this; } public String getBizId() { return this.bizId; } public UpdateCardRequest setCardData(String cardData) { this.cardData = cardData; return this; } public String getCardData() { return this.cardData; } public UpdateCardRequest setTips(UpdateCardRequestTips tips) { this.tips = tips; return this; } public UpdateCardRequestTips getTips() { return this.tips; } public static class UpdateCardRequestTips extends TeaModel { @NameInMap("cids") public String cids; @NameInMap("content") public String content; @NameInMap("sender") public String sender; public static UpdateCardRequestTips build(java.util.Map map) throws Exception { UpdateCardRequestTips self = new UpdateCardRequestTips(); return TeaModel.build(map, self); } public UpdateCardRequestTips setCids(String cids) { this.cids = cids; return this; } public String getCids() { return this.cids; } public UpdateCardRequestTips setContent(String content) { this.content = content; return this; } public String getContent() { return this.content; } public UpdateCardRequestTips setSender(String sender) { this.sender = sender; return this; } public String getSender() { return this.sender; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy