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

Helper module for validating an event booking before sending it.

Summary

Types

@type t() :: %ExNylas.EventBooking.Build{
  additional_fields: map() | nil,
  booking_type:
    (:booking | :"organizer-confirmation" | :"custom-confirmation") | nil,
  conferencing: ExNylas.EventConferencing.Build.t() | nil,
  description: String.t() | nil,
  disable_emails: boolean() | nil,
  hide_participants: boolean() | nil,
  location: String.t() | nil,
  reminders: ExNylas.EventReminder.Build.t() | nil,
  timezone: String.t() | nil,
  title: String.t()
}

Functions

Link to this function

changeset(struct, params \\ %{})

View Source