![JAR search and dependency download from the Maven repository](/logo.png)
com.tinypass.client.common.Webhook Maven / Gradle / Ivy
package com.tinypass.client.common;
@SuppressWarnings("unused")
public class Webhook {
public static Event parse(String response, String privateKey) throws Exception {
final String decryptedData = SecurityUtil.decrypt(privateKey, response);
return JsonParser.getInstance().deserialize(decryptedData, Event.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy