View Source ExNylas.OpenHours.Build (ExNylas v0.9.0)

Helper module for building open hours.

Summary

Types

@type t() :: %ExNylas.OpenHours.Build{
  days: [integer()] | nil,
  end: non_neg_integer(),
  exdates: [String.t()] | nil,
  start: non_neg_integer(),
  timezone: String.t() | nil
}

Functions

Link to this function

changeset(struct, params \\ %{})

View Source