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

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

There is a newer version: 1.1.23
Show newest version
package com.byteplus.model.response;

import lombok.Data;

import java.util.Arrays;

@Data
public class RawResponse {

    private byte[] data;
    private int code;
    private Exception exception;

    public RawResponse(byte[] data, int code, Exception e) {
        this.data = data;
        this.code = code;
        this.exception = e;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy