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

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

OK

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

200

*/ @NameInMap("HttpStatusCode") public Integer httpStatusCode; @NameInMap("Message") public String message; /** * example: *

C42981C7-93D9-55CD-B078-784F8522E0E1

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy