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

com.aliyun.dingtalkcard_1_0.models.DeliverCardResponseBody 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.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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy