All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ccc20200701.models.DisableTicketTemplateResponseBody Maven / Gradle / Ivy

There is a newer version: 2.28.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccc20200701.models;

import com.aliyun.tea.*;

public class DisableTicketTemplateResponseBody extends TeaModel {
    /**
     * example:
     * 

OK

*/ @NameInMap("Code") public String code; @NameInMap("Data") public Object data; /** * example: *

200

*/ @NameInMap("HttpStatusCode") public Integer httpStatusCode; @NameInMap("Message") public String message; @NameInMap("Params") public java.util.List params; /** * example: *

943D8EF3-3321-471F-A104-51C96FCA94D6

*/ @NameInMap("RequestId") public String requestId; public static DisableTicketTemplateResponseBody build(java.util.Map map) throws Exception { DisableTicketTemplateResponseBody self = new DisableTicketTemplateResponseBody(); return TeaModel.build(map, self); } public DisableTicketTemplateResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public DisableTicketTemplateResponseBody setData(Object data) { this.data = data; return this; } public Object getData() { return this.data; } public DisableTicketTemplateResponseBody setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public DisableTicketTemplateResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public DisableTicketTemplateResponseBody setParams(java.util.List params) { this.params = params; return this; } public java.util.List getParams() { return this.params; } public DisableTicketTemplateResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy