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

io.phasetwo.keycloak.representation.WebhookRepresentation Maven / Gradle / Ivy

There is a newer version: 0.32
Show newest version
package io.phasetwo.keycloak.representation;

import java.util.Date;
import java.util.Set;
import lombok.Data;

@Data
public class WebhookRepresentation {
  private String id;
  private boolean enabled;
  private String url;
  private String secret;
  private String algorithm;
  private String createdBy;
  private Date createdAt;
  private String realm;
  private Set eventTypes;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy