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

com.byteplus.model.response.SmsSendResponse Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.byteplus.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