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

com.recurly.v3.FileSerializer Maven / Gradle / Ivy

There is a newer version: 4.58.0
Show newest version
package com.recurly.v3;

import com.recurly.v3.resources.BinaryFile;
import java.lang.reflect.Type;

public class FileSerializer {
  public  T deserialize(byte[] responseBody, final Type resourceClass) {
    BinaryFile file = new BinaryFile();
    file.setData(responseBody);
    return (T) file;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy