Customer specific Environment with base Settings
Protocols
let output = value.ident
Allows a get operation to work.
let output = value.name
Allows a get operation to work.
value.name = input
Allows a set operation to work.
let output = value.languages
Allows a get operation to work.
value.languages = input
Allows a set operation to work.
protocol
get translations
let output = value.translations
Allows a get operation to work.
protocol
set translations
value.translations = input
Allows a set operation to work.
let output = value.settings
Allows a get operation to work.
value.settings = input
Allows a set operation to work.
let output = value.status
Allows a get operation to work.
let output = value.uuid
Allows a get operation to work.
if value == b { }
Allows for partial equality operations to work.
println("{:?}", value)
Allows the value to be debug printed.
println("{}", value)
Allows the value to be display printed.