View Source ExRender.Commit (ex_render v0.1.0)

Serialization model for Render commit

Summary

Types

@type t() :: %ExRender.Commit{
  created_at: String.t(),
  id: String.t(),
  message: String.t()
}

Functions

Link to this function

new(map_or_kwlist, opts \\ [])

View Source
@spec new(ExConstructor.map_or_kwlist(), Keyword.t()) :: %ExRender.Commit{
  created_at: term(),
  id: term(),
  message: term()
}