![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.bpstudio20210931.models.QueryInstancePrice4ModifyResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bpstudio20210931 Show documentation
Show all versions of bpstudio20210931 Show documentation
Alibaba Cloud BPStudio (20210931) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.bpstudio20210931.models;
import com.aliyun.tea.*;
public class QueryInstancePrice4ModifyResponseBody extends TeaModel {
/**
* example:
* {
* "PolicyType": "",
* "AuthPrincipalOwnerId": "",
* "EncodedDiagnosticMessage": "",
* "AuthPrincipalType": "",
* "AuthPrincipalDisplayName": "",
* "NoPermissionType": "",
* "AuthAction": ""
* }
*/
@NameInMap("AccessDeniedDetail")
public String accessDeniedDetail;
/**
* example:
* 200
*/
@NameInMap("Code")
public String code;
/**
* taskId
*/
@NameInMap("Data")
public String data;
/**
* example:
* Success
*/
@NameInMap("Message")
public String message;
/**
* example:
* 9656C816-1E9A-58D2-86D5-710678D61AF1
*/
@NameInMap("RequestId")
public String requestId;
/**
* example:
* true
*/
@NameInMap("Success")
public String success;
public static QueryInstancePrice4ModifyResponseBody build(java.util.Map map) throws Exception {
QueryInstancePrice4ModifyResponseBody self = new QueryInstancePrice4ModifyResponseBody();
return TeaModel.build(map, self);
}
public QueryInstancePrice4ModifyResponseBody setAccessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
return this;
}
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
public QueryInstancePrice4ModifyResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public QueryInstancePrice4ModifyResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public QueryInstancePrice4ModifyResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public QueryInstancePrice4ModifyResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QueryInstancePrice4ModifyResponseBody setSuccess(String success) {
this.success = success;
return this;
}
public String getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy