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

com.aliyun.ccc20200701.models.StartPrivacyCallResponseBody 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 StartPrivacyCallResponseBody extends TeaModel {
    /**
     * example:
     * 

OK

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

job-xxx

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

200

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

0630E5DF-CEB0-445B-8626-D5C7481181C3

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy