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

com.podio.hook.HookCreate Maven / Gradle / Ivy

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy