Class Webhook

java.lang.Object
de.bytestore.hostinger.entity.system.Webhook

@Entity(name="host_Webhook") public class Webhook extends Object
Represents a Webhook entity used for configuring interactions with external systems. A Webhook entity provides details about the type of request, authorization, event triggering, and endpoint URL used to execute HTTP requests. Fields in this class: - id: Unique identifier of the webhook. - response: Response content received from the webhook endpoint. - statusCode: HTTP status code returned by the webhook endpoint. - type: HTTP request type (e.g., GET, POST, PUT). - authorization: Indicates if authorization is required for the webhook. - username: Username used for authorization, if applicable. - password: Password used for authorization, if applicable. - createdBy: The user who created the webhook. - createdDate: The timestamp when the webhook was created. - event: Specific event that triggers the webhook. - url: URL of the webhook endpoint.
  • Constructor Details

    • Webhook

      public Webhook()
  • Method Details