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

com.aliyun.sdk.service.ecs20140526.models.EipNotifyPaidResponseBody Maven / Gradle / Ivy

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

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

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

EipNotifyPaidResponseBody

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy