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

com.youcruit.onfido.api.webhook.WebhookResponse Maven / Gradle / Ivy

There is a newer version: 2.2
Show newest version
package com.youcruit.onfido.api.webhook;

import java.net.URI;
import java.util.List;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class WebhookResponse {
    @Expose
    @SerializedName("id")
    private WebhookId id;
    @Expose
    @SerializedName("url")
    private URI url;
    @Expose
    @SerializedName("enabled")
    private boolean enabled;
    @Expose
    @SerializedName("href")
    private String pathToThis;
    @Expose
    @SerializedName("events")
    private List events;

    @Override
    public String toString() {
	return "WebhookResponse{" +
		"id=" + id +
		", url=" + url +
		", enabled=" + enabled +
		", pathToThis='" + pathToThis + '\'' +
		", events=" + events +
		'}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy