Increase.Events.Event (Increase v1.0.0)

Copy Markdown View Source

Events are records of things that happened to objects at Increase. Events are accessible via the List Events endpoint and can be delivered to your application via webhooks. For more information, see our webhooks guide.

Fields

  • id - The Event identifier.
  • associated_object_id - The identifier of the object that generated this Event.
  • associated_object_type - The type of the object that generated this Event.
  • category - The category of the Event. We may add additional possible values for this enum over time; your application should be able to handle such additions gracefully.
  • created_at - The time the Event was created.
  • type - A constant representing the object's type. For this resource it will always be event.

Summary

Types

t()

@type t() :: %Increase.Events.Event{
  associated_object_id: String.t(),
  associated_object_type: String.t(),
  category: String.t(),
  created_at: DateTime.t(),
  id: String.t(),
  type: String.t()
}