com.aliyun.dingtalkcard_1_0.models.DeliverCardResponseBody 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.dingtalkcard_1_0.models;
import com.aliyun.tea.*;
public class DeliverCardResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
@NameInMap("success")
public Boolean success;
public static DeliverCardResponseBody build(java.util.Map map) throws Exception {
DeliverCardResponseBody self = new DeliverCardResponseBody();
return TeaModel.build(map, self);
}
public DeliverCardResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public DeliverCardResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class DeliverCardResponseBodyResult extends TeaModel {
/**
* example:
* 4v+AzUEDuC0dKuO*********J0w8=
*/
@NameInMap("carrierId")
public String carrierId;
/**
* example:
* system error
*/
@NameInMap("errorMsg")
public String errorMsg;
/**
* example:
* cid1234abcd
*/
@NameInMap("spaceId")
public String spaceId;
/**
* example:
* IM_GROUP
*/
@NameInMap("spaceType")
public String spaceType;
@NameInMap("success")
public Boolean success;
public static DeliverCardResponseBodyResult build(java.util.Map map) throws Exception {
DeliverCardResponseBodyResult self = new DeliverCardResponseBodyResult();
return TeaModel.build(map, self);
}
public DeliverCardResponseBodyResult setCarrierId(String carrierId) {
this.carrierId = carrierId;
return this;
}
public String getCarrierId() {
return this.carrierId;
}
public DeliverCardResponseBodyResult setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
return this;
}
public String getErrorMsg() {
return this.errorMsg;
}
public DeliverCardResponseBodyResult setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public DeliverCardResponseBodyResult setSpaceType(String spaceType) {
this.spaceType = spaceType;
return this;
}
public String getSpaceType() {
return this.spaceType;
}
public DeliverCardResponseBodyResult setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
}