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

com.aliyun.dingtalkcontact_1_0.models.DeleteContactRestrictSettingResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontact_1_0.models;

import com.aliyun.tea.*;

public class DeleteContactRestrictSettingResponseBody extends TeaModel {
    // 是否成功
    @NameInMap("result")
    public Boolean result;

    public static DeleteContactRestrictSettingResponseBody build(java.util.Map map) throws Exception {
        DeleteContactRestrictSettingResponseBody self = new DeleteContactRestrictSettingResponseBody();
        return TeaModel.build(map, self);
    }

    public DeleteContactRestrictSettingResponseBody setResult(Boolean result) {
        this.result = result;
        return this;
    }
    public Boolean getResult() {
        return this.result;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy