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

com.aliyun.sdk.service.agency20221216.models.DeductOutstandingBalanceResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.agency20221216.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link DeductOutstandingBalanceResponseBody} extends {@link TeaModel}
 *
 * 

DeductOutstandingBalanceResponseBody

*/ public class DeductOutstandingBalanceResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Code") private String code; @com.aliyun.core.annotation.NameInMap("Message") private String message; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Success") private Boolean success; private DeductOutstandingBalanceResponseBody(Builder builder) { this.code = builder.code; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static DeductOutstandingBalanceResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private String message; private String requestId; private Boolean success; /** *

Result Code. Value Range:

*
    *
  • 200 OK
  • *
  • 1109 System Error
  • *
* * example: *

200

*/ public Builder code(String code) { this.code = code; return this; } /** *

Same as Code Parameter Value.

* * example: *

200

*/ public Builder message(String message) { this.message = message; return this; } /** *

Request ID, the unique request identifier generated by Alibaba Cloud.

* * example: *

9C14ADFE-DF0A-54D4-8BD5-45D0839246B4

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** *

Candidate Value: True/False, which indicates whether the current API call itself is successful. It does not guarantee the success of subsequent business operations.

* * example: *

true

*/ public Builder success(Boolean success) { this.success = success; return this; } public DeductOutstandingBalanceResponseBody build() { return new DeductOutstandingBalanceResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy