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

com.qiniu.rtc.model.QRTCResult Maven / Gradle / Ivy

There is a newer version: 7.17.0
Show newest version
package com.qiniu.rtc.model;

import lombok.Data;

@Data
public class QRTCResult {
    private int code;
    private String message;
    private T result;

    public QRTCResult(int code, String message, T result) {
        this.code = code;
        this.message = message;
        this.result = result;
    }

    public static  QRTCResult fail(int code, String message) {
        return new QRTCResult<>(code, message, null);
    }

    public static  QRTCResult success(int code, T result) {
        return new QRTCResult<>(code, "OK", result);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy