uplink/internal/transcoders/options
Icedream 966dd7b507
Initial commit.
2018-04-10 13:48:51 +02:00
..
README.md Initial commit. 2018-04-10 13:48:51 +02:00
boolean_transcoder_option.go Initial commit. 2018-04-10 13:48:51 +02:00
int64_transcoder_option.go Initial commit. 2018-04-10 13:48:51 +02:00
string_transcoder_option.go Initial commit. 2018-04-10 13:48:51 +02:00
transcoder_option_tree.go Initial commit. 2018-04-10 13:48:51 +02:00
types.go Initial commit. 2018-04-10 13:48:51 +02:00

README.md

Descriptor

{
	"options": {
		"option-1": { "type": "boolean", "defaultValue": false },
		"option-2": { "type": "string", "defaultValue": "blubb blabb" },
		"option-3": { "type": "int32", "defaultValue": 50, "min": 0, "max": 100 }
	}
}

Data

{
	"options": {
		"option-1": true,
		"option-2": "hello world",
		"option-3": 50
	}
}