View Source ExNylas.Channel (ExNylas v0.9.0)

A struct representing a channel.

Nylas docs

Summary

Types

@type t() :: %ExNylas.Channel{
  created_at: integer() | nil,
  description: String.t() | nil,
  id: String.t() | nil,
  notification_email_addresses: [String.t()] | nil,
  status: (:active | :pause | :failing | :failed) | nil,
  status_updated_at: integer() | nil,
  topic: String.t() | nil,
  trigger_types: [String.t()] | nil,
  updated_at: integer() | nil
}