Record Class WebhookEvent

java.lang.Object
java.lang.Record
energy.eddie.regionconnector.us.green.button.dtos.WebhookEvent

public record WebhookEvent(String uid, String type, ZonedDateTime ts, String deliveryMethod, URI deliveryTarget, boolean isDelivered, @Nullable String authorizationUid, @Nullable String meterUid) extends Record
  • Constructor Details

    • WebhookEvent

      public WebhookEvent(String uid, String type, ZonedDateTime ts, String deliveryMethod, URI deliveryTarget, boolean isDelivered, @Nullable String authorizationUid, @Nullable String meterUid)
      Creates an instance of a WebhookEvent record class.
      Parameters:
      uid - the value for the uid record component
      type - the value for the type record component
      ts - the value for the ts record component
      deliveryMethod - the value for the deliveryMethod record component
      deliveryTarget - the value for the deliveryTarget record component
      isDelivered - the value for the isDelivered record component
      authorizationUid - the value for the authorizationUid record component
      meterUid - the value for the meterUid record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • uid

      public String uid()
      Returns the value of the uid record component.
      Returns:
      the value of the uid record component
    • type

      public String type()
      Returns the value of the type record component.
      Returns:
      the value of the type record component
    • ts

      public ZonedDateTime ts()
      Returns the value of the ts record component.
      Returns:
      the value of the ts record component
    • deliveryMethod

      public String deliveryMethod()
      Returns the value of the deliveryMethod record component.
      Returns:
      the value of the deliveryMethod record component
    • deliveryTarget

      public URI deliveryTarget()
      Returns the value of the deliveryTarget record component.
      Returns:
      the value of the deliveryTarget record component
    • isDelivered

      public boolean isDelivered()
      Returns the value of the isDelivered record component.
      Returns:
      the value of the isDelivered record component
    • authorizationUid

      @Nullable public String authorizationUid()
      Returns the value of the authorizationUid record component.
      Returns:
      the value of the authorizationUid record component
    • meterUid

      @Nullable public String meterUid()
      Returns the value of the meterUid record component.
      Returns:
      the value of the meterUid record component