![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.quickbi_public20220101.models.UpdateTicketNumResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.quickbi_public20220101.models;
import com.aliyun.tea.*;
public class UpdateTicketNumResponseBody extends TeaModel {
/**
* example:
* D787E1A3-A93C-424A-B626-C2B05DF8D885
*/
@NameInMap("RequestId")
public String requestId;
/**
* example:
* true
*/
@NameInMap("Result")
public Boolean result;
/**
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static UpdateTicketNumResponseBody build(java.util.Map map) throws Exception {
UpdateTicketNumResponseBody self = new UpdateTicketNumResponseBody();
return TeaModel.build(map, self);
}
public UpdateTicketNumResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public UpdateTicketNumResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public UpdateTicketNumResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy