com.zuora.sdk.CustomObjectHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zuora-sdk-java Show documentation
Show all versions of zuora-sdk-java Show documentation
The SDK of JAVA language for Zuora pricing system
package com.zuora.sdk;
import com.google.gson.reflect.TypeToken;
import org.openapitools.client.JSON;
import org.openapitools.client.model.CustomObject;
import java.lang.reflect.Type;
public class CustomObjectHelper {
public T deserializeCustomObject(CustomObject customObject,Class customObjectClass){
Type classType = TypeToken.get(customObjectClass).getType();
return new JSON().deserialize(new JSON().serialize(customObject), classType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy