com.aliyun.sdk.service.ens20171110.models.ModifyImageAttributeResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ens20171110 Show documentation
Show all versions of alibabacloud-ens20171110 Show documentation
Alibaba Cloud Ens (20171110) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link ModifyImageAttributeResponseBody} extends {@link TeaModel}
*
* ModifyImageAttributeResponseBody
*/
public class ModifyImageAttributeResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Code")
private Integer code;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private ModifyImageAttributeResponseBody(Builder builder) {
this.code = builder.code;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ModifyImageAttributeResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public Integer getCode() {
return this.code;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Integer code;
private String requestId;
/**
* The service code. 0 is returned for a successful request. An error code is returned for a failed request.
*
* example:
* 0
*/
public Builder code(Integer code) {
this.code = code;
return this;
}
/**
* The ID of the request.
*
* example:
* AC66B8F3-0B0A-5FB1-9EA2-DC03B2CD5B04
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ModifyImageAttributeResponseBody build() {
return new ModifyImageAttributeResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy