com.volcengine.model.response.SmsSendResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class SmsSendResponse {
@JSONField(name = "ResponseMetadata")
ResponseMetadata responseMetadata;
@JSONField(name = "Result")
ResultBean result;
@JSONField(name = "Code")
String code;
@JSONField(name = "Message")
String message;
@Data
public static class ResultBean {
@JSONField(name = "MessageID")
List messageId;
}
public SmsSendResponse(){}
public SmsSendResponse(String code,String message){
this.code = code;
this.message = message;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy