com.aliyun.sdk.service.cloudapi20160714.models.DeleteAppKeyRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Alibaba Cloud CloudAPI (20160714) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DeleteAppKeyRequest} extends {@link RequestModel}
*
* DeleteAppKeyRequest
*/
public class DeleteAppKeyRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("AppId")
@com.aliyun.core.annotation.Validation(required = true)
private String appId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("AppKey")
@com.aliyun.core.annotation.Validation(required = true)
private String appKey;
private DeleteAppKeyRequest(Builder builder) {
super(builder);
this.appId = builder.appId;
this.appKey = builder.appKey;
}
public static Builder builder() {
return new Builder();
}
public static DeleteAppKeyRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return appId
*/
public String getAppId() {
return this.appId;
}
/**
* @return appKey
*/
public String getAppKey() {
return this.appKey;
}
public static final class Builder extends Request.Builder {
private String appId;
private String appKey;
private Builder() {
super();
}
private Builder(DeleteAppKeyRequest request) {
super(request);
this.appId = request.appId;
this.appKey = request.appKey;
}
/**
* AppId.
*/
public Builder appId(String appId) {
this.putQueryParameter("AppId", appId);
this.appId = appId;
return this;
}
/**
* AppKey.
*/
public Builder appKey(String appKey) {
this.putQueryParameter("AppKey", appKey);
this.appKey = appKey;
return this;
}
@Override
public DeleteAppKeyRequest build() {
return new DeleteAppKeyRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy