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

com.aliyun.sdk.service.agency20221216.models.SubscriptionBillResponseBody 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 SubscriptionBillResponseBody} extends {@link TeaModel}
 *
 * 

SubscriptionBillResponseBody

*/ public class SubscriptionBillResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Code") private String code; @com.aliyun.core.annotation.NameInMap("Data") private Boolean data; @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 SubscriptionBillResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static SubscriptionBillResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Boolean getData() { return this.data; } /** * @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 Boolean data; private String message; private String requestId; private Boolean success; /** *

The HTTP status code that is returned.

* * example: *

200

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

The data that is returned.

* * example: *

true

*/ public Builder data(Boolean data) { this.data = data; return this; } /** *

The message that is returned.

* * example: *

Successful

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

The ID of the request.

* * example: *

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

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

Indicates whether the request was successful.

* * example: *

true

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy