View Source ExRender.Service (ex_render v0.2.0)

Serialization model for Render services

Summary

Types

@type t() :: %ExRender.Service{
  auto_deploy: String.t(),
  branch: String.t(),
  created_at: String.t(),
  id: String.t(),
  name: String.t(),
  notify_on_fail: String.t(),
  owner_id: String.t(),
  repo: String.t(),
  root_dir: String.t(),
  service_details: ExRender.ServiceDetails.t(),
  slug: String.t(),
  suspended: String.t(),
  suspenders: String.t(),
  type: String.t(),
  updated_at: String.t()
}

Functions

Link to this function

new(map_or_kwlist, opts \\ [])

View Source
@spec new(ExConstructor.map_or_kwlist(), Keyword.t()) :: %ExRender.Service{
  auto_deploy: term(),
  branch: term(),
  created_at: term(),
  id: term(),
  name: term(),
  notify_on_fail: term(),
  owner_id: term(),
  repo: term(),
  root_dir: term(),
  service_details: term(),
  slug: term(),
  suspended: term(),
  suspenders: term(),
  type: term(),
  updated_at: term()
}