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

com.aliyun.dingtalkexclusive_1_0.models.ListRulesRequest 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class ListRulesRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("body") public ListRulesRequestBody body; public static ListRulesRequest build(java.util.Map map) throws Exception { ListRulesRequest self = new ListRulesRequest(); return TeaModel.build(map, self); } public ListRulesRequest setBody(ListRulesRequestBody body) { this.body = body; return this; } public ListRulesRequestBody getBody() { return this.body; } public static class ListRulesRequestBody extends TeaModel { /** * example: *

1

*/ @NameInMap("status") public Long status; public static ListRulesRequestBody build(java.util.Map map) throws Exception { ListRulesRequestBody self = new ListRulesRequestBody(); return TeaModel.build(map, self); } public ListRulesRequestBody setStatus(Long status) { this.status = status; return this; } public Long getStatus() { return this.status; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy