func PackMMAdd(mmID, uniqueID string, props map[string]int, metadata []byte, ttl uint64) []byte
func PackMMRemove(mmID string, uniqueIDs []string) []byte
func PackMMSearch(mmIDs []string, props map[string]int) []byte
type MMAdd struct {
    TTL      int64
    ID       string
    UID      string
    Props    map[string]int
    Metadata []byte
}
			
			
			
			
			
			
				
				func UnpackMMAdd(bytes []byte) *MMAdd
type MMRemove struct {
    ID   string
    UIDs []string
}
			
			
			
			
			
			
				
				func UnpackMMRemove(bytes []byte) *MMRemove
type MMSearch struct {
    IDs   []string
    Props map[string]int
}
			
			
			
			
			
			
				
				func UnpackMMSearch(bytes []byte) *MMSearch