com.aliyun.quickbi_public20220101.models.CreateTicketResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickbi_public20220101 Show documentation
Show all versions of quickbi_public20220101 Show documentation
Alibaba Cloud quickbi-public (20220101) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.quickbi_public20220101.models;
import com.aliyun.tea.*;
public class CreateTicketResponseBody extends TeaModel {
/**
* example:
* D787E1A3-A93C-424A-B626-C2B05DF8D885
*/
@NameInMap("RequestId")
public String requestId;
/**
* example:
* ccd3428c---a608-26bae29dffee
*/
@NameInMap("Result")
public String result;
/**
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static CreateTicketResponseBody build(java.util.Map map) throws Exception {
CreateTicketResponseBody self = new CreateTicketResponseBody();
return TeaModel.build(map, self);
}
public CreateTicketResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateTicketResponseBody setResult(String result) {
this.result = result;
return this;
}
public String getResult() {
return this.result;
}
public CreateTicketResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}