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

com.aliyun.sdk.service.cloudapi20160714.models.SetGroupAuthAppCodeRequest Maven / Gradle / Ivy

There is a newer version: 3.0.23
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;

import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link SetGroupAuthAppCodeRequest} extends {@link RequestModel}
 *
 * 

SetGroupAuthAppCodeRequest

*/ public class SetGroupAuthAppCodeRequest extends Request { @Query @NameInMap("AuthAppCode") @Validation(required = true) private String authAppCode; @Query @NameInMap("GroupId") @Validation(required = true) private String groupId; @Query @NameInMap("SecurityToken") private String securityToken; private SetGroupAuthAppCodeRequest(Builder builder) { super(builder); this.authAppCode = builder.authAppCode; this.groupId = builder.groupId; this.securityToken = builder.securityToken; } public static Builder builder() { return new Builder(); } public static SetGroupAuthAppCodeRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return authAppCode */ public String getAuthAppCode() { return this.authAppCode; } /** * @return groupId */ public String getGroupId() { return this.groupId; } /** * @return securityToken */ public String getSecurityToken() { return this.securityToken; } public static final class Builder extends Request.Builder { private String authAppCode; private String groupId; private String securityToken; private Builder() { super(); } private Builder(SetGroupAuthAppCodeRequest request) { super(request); this.authAppCode = request.authAppCode; this.groupId = request.groupId; this.securityToken = request.securityToken; } /** * AuthAppCode. */ public Builder authAppCode(String authAppCode) { this.putQueryParameter("AuthAppCode", authAppCode); this.authAppCode = authAppCode; return this; } /** * GroupId. */ public Builder groupId(String groupId) { this.putQueryParameter("GroupId", groupId); this.groupId = groupId; return this; } /** * SecurityToken. */ public Builder securityToken(String securityToken) { this.putQueryParameter("SecurityToken", securityToken); this.securityToken = securityToken; return this; } @Override public SetGroupAuthAppCodeRequest build() { return new SetGroupAuthAppCodeRequest(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy