internal/foo

Types

pub type FooJSON {
  Foo(
    a_bool: Bool,
    b_int: Int,
    c_float: Float,
    d_two_tuple: #(Int, String),
    e_option_int: Option(Int),
    f_string_list: List(String),
  )
}

Constructors

  • Foo(
      a_bool: Bool,
      b_int: Int,
      c_float: Float,
      d_two_tuple: #(Int, String),
      e_option_int: Option(Int),
      f_string_list: List(String),
    )
Search Document