PS2.API.Query.Tree (PlanetSide 2 API v1.0.0)

View Source

A data structure representing a tree on an API query. Create a tree using PS2.API.Query.Tree.new/1 functions.

Summary

Types

opts()

@type opts() :: [
  field: String.t(),
  list: 0 | 1,
  prefix: String.t() | nil,
  start: String.t() | nil
]

t()

@type t() :: %PS2.API.Query.Tree{
  field: String.t(),
  list: 0 | 1,
  prefix: String.t() | nil,
  start: String.t() | nil
}

Functions

new(opts \\ [])

@spec new(opts()) :: t()