Documentation ¶ Index ¶ type DataType func (d DataType) String() string type Status func (s Status) String() string Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type DataType ¶ added in v0.1.3 type DataType string const ( DataTypeString DataType = "string" DataTypeInt DataType = "int" DataTypeFloat DataType = "float" DataTypeBool DataType = "bool" ) func (DataType) String ¶ added in v0.1.3 func (d DataType) String() string type Status ¶ type Status string Status type for enum const ( // Unknown status for unknown Unknown Status = "" // Enabled enabled Enabled Status = "enabled" // Disabled disabled Disabled Status = "disabled" // Locked lock status Locked Status = "locked" ) func (Status) String ¶ func (s Status) String() string String string Source Files ¶ View all Source files data_type.go status.go Click to show internal directories. Click to hide internal directories.