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

com.aliyun.dingtalkexclusive_1_0.models.GetSecurityConfigMemberRequest 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 GetSecurityConfigMemberRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

ctrl.xxx

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

This parameter is required.

*/ @NameInMap("maxResults") public Integer maxResults; /** *

This parameter is required.

*/ @NameInMap("nextToken") public Float nextToken; public static GetSecurityConfigMemberRequest build(java.util.Map map) throws Exception { GetSecurityConfigMemberRequest self = new GetSecurityConfigMemberRequest(); return TeaModel.build(map, self); } public GetSecurityConfigMemberRequest setConfigKey(String configKey) { this.configKey = configKey; return this; } public String getConfigKey() { return this.configKey; } public GetSecurityConfigMemberRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public GetSecurityConfigMemberRequest setNextToken(Float nextToken) { this.nextToken = nextToken; return this; } public Float getNextToken() { return this.nextToken; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy