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

com.tinypass.client.common.Webhook Maven / Gradle / Ivy

There is a newer version: 16.366.0
Show newest version
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