func (i *EventId) UnmarshalJSON(bytes []byte) (err error) { *i, err = ParseEventId(utils.StripQuotes(string(bytes))) return }
func (i *Alias) UnmarshalJSON(bytes []byte) (err error) { *i, err = ParseAlias(utils.StripQuotes(string(bytes))) return }
func (t *StreamToken) UnmarshalJSON(bytes []byte) (err error) { *t, err = ParseStreamToken(utils.StripQuotes(string(bytes))) return }