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

com.aliyun.sdk.service.dts20200101.models.DescribeChannelAccountResponseBody Maven / Gradle / Ivy

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

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

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

DescribeChannelAccountResponseBody

*/ public class DescribeChannelAccountResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("DynamicCode") private String dynamicCode; @com.aliyun.core.annotation.NameInMap("DynamicMessage") private String dynamicMessage; @com.aliyun.core.annotation.NameInMap("ErrCode") private String errCode; @com.aliyun.core.annotation.NameInMap("ErrMessage") private String errMessage; @com.aliyun.core.annotation.NameInMap("HttpStatusCode") private Integer httpStatusCode; @com.aliyun.core.annotation.NameInMap("Password") private String password; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Success") private Boolean success; @com.aliyun.core.annotation.NameInMap("Username") private String username; private DescribeChannelAccountResponseBody(Builder builder) { this.dynamicCode = builder.dynamicCode; this.dynamicMessage = builder.dynamicMessage; this.errCode = builder.errCode; this.errMessage = builder.errMessage; this.httpStatusCode = builder.httpStatusCode; this.password = builder.password; this.requestId = builder.requestId; this.success = builder.success; this.username = builder.username; } public static Builder builder() { return new Builder(); } public static DescribeChannelAccountResponseBody create() { return builder().build(); } /** * @return dynamicCode */ public String getDynamicCode() { return this.dynamicCode; } /** * @return dynamicMessage */ public String getDynamicMessage() { return this.dynamicMessage; } /** * @return errCode */ public String getErrCode() { return this.errCode; } /** * @return errMessage */ public String getErrMessage() { return this.errMessage; } /** * @return httpStatusCode */ public Integer getHttpStatusCode() { return this.httpStatusCode; } /** * @return password */ public String getPassword() { return this.password; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return username */ public String getUsername() { return this.username; } public static final class Builder { private String dynamicCode; private String dynamicMessage; private String errCode; private String errMessage; private Integer httpStatusCode; private String password; private String requestId; private Boolean success; private String username; /** * DynamicCode. */ public Builder dynamicCode(String dynamicCode) { this.dynamicCode = dynamicCode; return this; } /** * DynamicMessage. */ public Builder dynamicMessage(String dynamicMessage) { this.dynamicMessage = dynamicMessage; return this; } /** * ErrCode. */ public Builder errCode(String errCode) { this.errCode = errCode; return this; } /** * ErrMessage. */ public Builder errMessage(String errMessage) { this.errMessage = errMessage; return this; } /** * HttpStatusCode. */ public Builder httpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } /** * Password. */ public Builder password(String password) { this.password = password; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Username. */ public Builder username(String username) { this.username = username; return this; } public DescribeChannelAccountResponseBody build() { return new DescribeChannelAccountResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy