Messages

Message

type Message struct {
	// Unique identifier for the command
	Id string
	// Identifies the source of the command
	Source string
	// Identifies the target app
	Target string
	// The type of command
	Type string
	// Command generation time
	GenerationTime time.Time
	// The command data
	Body map[string]any
}

Last modified June 18, 2023: [web-site]Add reference section (35abc1b)