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

com.aliyun.sdk.service.dysmsapi20170525.models.SendBatchSmsResponseBody Maven / Gradle / Ivy

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

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

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

SendBatchSmsResponseBody

*/ public class SendBatchSmsResponseBody extends TeaModel { @NameInMap("BizId") private String bizId; @NameInMap("Code") private String code; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; private SendBatchSmsResponseBody(Builder builder) { this.bizId = builder.bizId; this.code = builder.code; this.message = builder.message; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static SendBatchSmsResponseBody create() { return builder().build(); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return code */ public String getCode() { return this.code; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String bizId; private String code; private String message; private String requestId; /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public SendBatchSmsResponseBody build() { return new SendBatchSmsResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy