com.podio.hook.HookCreate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
package com.podio.hook;
public class HookCreate {
/**
* The url of endpoint
*/
private String url;
/**
* The type of events to listen to
*/
private HookType type;
public HookCreate(String url, HookType type) {
super();
this.url = url;
this.type = type;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public HookType getType() {
return type;
}
public void setType(HookType type) {
this.type = type;
}
}