View Source CozyLark.ServerSideAPI.Config (cozy_lark v0.4.1)

Link to this section Summary

Link to this section Types

@type config() :: %{
  platform: :lark | :feishu,
  app_type: :custom_app | :store_app,
  app_id: String.t(),
  app_secret: String.t()
}
@type t() :: %CozyLark.ServerSideAPI.Config{
  app_id: String.t(),
  app_secret: String.t(),
  app_type: :custom_app | :store_app,
  platform: :lark | :feishu
}

Link to this section Functions

@spec new!(config()) :: t()