mirror of
https://github.com/strukturag/nextcloud-spreed-signaling
synced 2026-03-14 14:35:44 +01:00
Do a full build of generated files.
This commit is contained in:
parent
052b3e28ed
commit
e8a5d3ecd2
3 changed files with 1923 additions and 207 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -2038,7 +2038,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling15(in *jle
|
|||
if out.Error == nil {
|
||||
out.Error = new(Error)
|
||||
}
|
||||
(*out.Error).UnmarshalEasyJSON(in)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling16(in, out.Error)
|
||||
}
|
||||
default:
|
||||
in.SkipRecursive()
|
||||
|
|
@ -2068,7 +2068,7 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling15(out *jw
|
|||
} else {
|
||||
out.RawString(prefix)
|
||||
}
|
||||
(*in.Error).MarshalEasyJSON(out)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling16(out, *in.Error)
|
||||
}
|
||||
out.RawByte('}')
|
||||
}
|
||||
|
|
@ -2096,7 +2096,65 @@ func (v *BackendRoomDialoutResponse) UnmarshalJSON(data []byte) error {
|
|||
func (v *BackendRoomDialoutResponse) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling15(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling16(in *jlexer.Lexer, out *BackendRoomDialoutRequest) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling16(in *jlexer.Lexer, out *Error) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
in.Consumed()
|
||||
}
|
||||
in.Skip()
|
||||
return
|
||||
}
|
||||
in.Delim('{')
|
||||
for !in.IsDelim('}') {
|
||||
key := in.UnsafeFieldName(false)
|
||||
in.WantColon()
|
||||
if in.IsNull() {
|
||||
in.Skip()
|
||||
in.WantComma()
|
||||
continue
|
||||
}
|
||||
switch key {
|
||||
case "code":
|
||||
out.Code = string(in.String())
|
||||
case "message":
|
||||
out.Message = string(in.String())
|
||||
case "details":
|
||||
if data := in.Raw(); in.Ok() {
|
||||
in.AddError((out.Details).UnmarshalJSON(data))
|
||||
}
|
||||
default:
|
||||
in.SkipRecursive()
|
||||
}
|
||||
in.WantComma()
|
||||
}
|
||||
in.Delim('}')
|
||||
if isTopLevel {
|
||||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling16(out *jwriter.Writer, in Error) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
{
|
||||
const prefix string = ",\"code\":"
|
||||
out.RawString(prefix[1:])
|
||||
out.String(string(in.Code))
|
||||
}
|
||||
{
|
||||
const prefix string = ",\"message\":"
|
||||
out.RawString(prefix)
|
||||
out.String(string(in.Message))
|
||||
}
|
||||
if len(in.Details) != 0 {
|
||||
const prefix string = ",\"details\":"
|
||||
out.RawString(prefix)
|
||||
out.Raw((in.Details).MarshalJSON())
|
||||
}
|
||||
out.RawByte('}')
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling17(in *jlexer.Lexer, out *BackendRoomDialoutRequest) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -2131,7 +2189,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling16(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling16(out *jwriter.Writer, in BackendRoomDialoutRequest) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling17(out *jwriter.Writer, in BackendRoomDialoutRequest) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -2151,27 +2209,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling16(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendRoomDialoutRequest) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling16(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling17(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendRoomDialoutRequest) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling16(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling17(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendRoomDialoutRequest) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling16(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling17(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendRoomDialoutRequest) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling16(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling17(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling17(in *jlexer.Lexer, out *BackendRoomDialoutError) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling18(in *jlexer.Lexer, out *BackendRoomDialoutError) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -2204,7 +2262,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling17(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling17(out *jwriter.Writer, in BackendRoomDialoutError) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling18(out *jwriter.Writer, in BackendRoomDialoutError) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -2224,27 +2282,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling17(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendRoomDialoutError) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling17(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling18(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendRoomDialoutError) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling17(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling18(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendRoomDialoutError) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling17(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling18(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendRoomDialoutError) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling17(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling18(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling18(in *jlexer.Lexer, out *BackendRoomDeleteRequest) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling19(in *jlexer.Lexer, out *BackendRoomDeleteRequest) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -2296,7 +2354,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling18(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling18(out *jwriter.Writer, in BackendRoomDeleteRequest) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling19(out *jwriter.Writer, in BackendRoomDeleteRequest) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -2321,27 +2379,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling18(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendRoomDeleteRequest) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling18(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling19(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendRoomDeleteRequest) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling18(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling19(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendRoomDeleteRequest) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling18(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling19(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendRoomDeleteRequest) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling18(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling19(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling19(in *jlexer.Lexer, out *BackendPingEntry) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling20(in *jlexer.Lexer, out *BackendPingEntry) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -2374,7 +2432,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling19(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling19(out *jwriter.Writer, in BackendPingEntry) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling20(out *jwriter.Writer, in BackendPingEntry) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -2400,27 +2458,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling19(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendPingEntry) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling19(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling20(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendPingEntry) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling19(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling20(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendPingEntry) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling19(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling20(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendPingEntry) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling19(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling20(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling20(in *jlexer.Lexer, out *BackendInformationEtcd) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling21(in *jlexer.Lexer, out *BackendInformationEtcd) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -2459,7 +2517,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling20(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling20(out *jwriter.Writer, in BackendInformationEtcd) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling21(out *jwriter.Writer, in BackendInformationEtcd) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -2494,27 +2552,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling20(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendInformationEtcd) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling20(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling21(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendInformationEtcd) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling20(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling21(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendInformationEtcd) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling20(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling21(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendInformationEtcd) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling20(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling21(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling21(in *jlexer.Lexer, out *BackendClientSessionResponse) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling22(in *jlexer.Lexer, out *BackendClientSessionResponse) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -2547,7 +2605,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling21(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling21(out *jwriter.Writer, in BackendClientSessionResponse) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling22(out *jwriter.Writer, in BackendClientSessionResponse) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -2567,27 +2625,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling21(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendClientSessionResponse) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling21(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling22(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendClientSessionResponse) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling21(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling22(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendClientSessionResponse) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling21(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling22(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendClientSessionResponse) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling21(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling22(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling22(in *jlexer.Lexer, out *BackendClientSessionRequest) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling23(in *jlexer.Lexer, out *BackendClientSessionRequest) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -2630,7 +2688,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling22(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling22(out *jwriter.Writer, in BackendClientSessionRequest) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling23(out *jwriter.Writer, in BackendClientSessionRequest) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -2670,27 +2728,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling22(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendClientSessionRequest) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling22(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling23(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendClientSessionRequest) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling22(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling23(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendClientSessionRequest) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling22(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling23(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendClientSessionRequest) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling22(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling23(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling23(in *jlexer.Lexer, out *BackendClientRoomResponse) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling24(in *jlexer.Lexer, out *BackendClientRoomResponse) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -2762,7 +2820,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling23(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling23(out *jwriter.Writer, in BackendClientRoomResponse) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling24(out *jwriter.Writer, in BackendClientRoomResponse) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -2808,27 +2866,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling23(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendClientRoomResponse) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling23(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling24(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendClientRoomResponse) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling23(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling24(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendClientRoomResponse) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling23(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling24(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendClientRoomResponse) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling23(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling24(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling24(in *jlexer.Lexer, out *BackendClientRoomRequest) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling25(in *jlexer.Lexer, out *BackendClientRoomRequest) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -2873,7 +2931,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling24(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling24(out *jwriter.Writer, in BackendClientRoomRequest) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling25(out *jwriter.Writer, in BackendClientRoomRequest) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -2923,27 +2981,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling24(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendClientRoomRequest) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling24(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling25(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendClientRoomRequest) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling24(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling25(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendClientRoomRequest) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling24(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling25(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendClientRoomRequest) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling24(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling25(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling25(in *jlexer.Lexer, out *BackendClientRingResponse) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling26(in *jlexer.Lexer, out *BackendClientRingResponse) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -2976,7 +3034,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling25(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling25(out *jwriter.Writer, in BackendClientRingResponse) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling26(out *jwriter.Writer, in BackendClientRingResponse) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -2996,27 +3054,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling25(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendClientRingResponse) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling25(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling26(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendClientRingResponse) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling25(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling26(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendClientRingResponse) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling25(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling26(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendClientRingResponse) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling25(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling26(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling26(in *jlexer.Lexer, out *BackendClientResponse) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling27(in *jlexer.Lexer, out *BackendClientResponse) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -3045,7 +3103,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling26(in *jle
|
|||
if out.Error == nil {
|
||||
out.Error = new(Error)
|
||||
}
|
||||
(*out.Error).UnmarshalEasyJSON(in)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling16(in, out.Error)
|
||||
}
|
||||
case "auth":
|
||||
if in.IsNull() {
|
||||
|
|
@ -3097,7 +3155,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling26(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling26(out *jwriter.Writer, in BackendClientResponse) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling27(out *jwriter.Writer, in BackendClientResponse) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -3109,7 +3167,7 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling26(out *jw
|
|||
if in.Error != nil {
|
||||
const prefix string = ",\"error\":"
|
||||
out.RawString(prefix)
|
||||
(*in.Error).MarshalEasyJSON(out)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling16(out, *in.Error)
|
||||
}
|
||||
if in.Auth != nil {
|
||||
const prefix string = ",\"auth\":"
|
||||
|
|
@ -3137,27 +3195,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling26(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendClientResponse) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling26(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling27(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendClientResponse) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling26(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling27(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendClientResponse) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling26(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling27(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendClientResponse) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling26(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling27(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling27(in *jlexer.Lexer, out *BackendClientRequest) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling28(in *jlexer.Lexer, out *BackendClientRequest) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -3228,7 +3286,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling27(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling27(out *jwriter.Writer, in BackendClientRequest) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling28(out *jwriter.Writer, in BackendClientRequest) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -3263,27 +3321,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling27(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendClientRequest) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling27(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling28(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendClientRequest) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling27(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling28(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendClientRequest) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling27(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling28(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendClientRequest) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling27(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling28(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling28(in *jlexer.Lexer, out *BackendClientPingRequest) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling29(in *jlexer.Lexer, out *BackendClientPingRequest) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -3339,7 +3397,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling28(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling28(out *jwriter.Writer, in BackendClientPingRequest) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling29(out *jwriter.Writer, in BackendClientPingRequest) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -3375,27 +3433,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling28(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendClientPingRequest) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling28(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling29(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendClientPingRequest) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling28(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling29(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendClientPingRequest) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling28(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling29(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendClientPingRequest) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling28(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling29(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling29(in *jlexer.Lexer, out *BackendClientAuthResponse) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling30(in *jlexer.Lexer, out *BackendClientAuthResponse) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -3432,7 +3490,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling29(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling29(out *jwriter.Writer, in BackendClientAuthResponse) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling30(out *jwriter.Writer, in BackendClientAuthResponse) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -3457,27 +3515,27 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling29(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendClientAuthResponse) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling29(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling30(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendClientAuthResponse) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling29(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling30(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendClientAuthResponse) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling29(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling30(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendClientAuthResponse) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling29(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling30(l, v)
|
||||
}
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling30(in *jlexer.Lexer, out *BackendClientAuthRequest) {
|
||||
func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling31(in *jlexer.Lexer, out *BackendClientAuthRequest) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -3512,7 +3570,7 @@ func easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling30(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling30(out *jwriter.Writer, in BackendClientAuthRequest) {
|
||||
func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling31(out *jwriter.Writer, in BackendClientAuthRequest) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -3532,23 +3590,23 @@ func easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling30(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v BackendClientAuthRequest) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling30(&w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling31(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v BackendClientAuthRequest) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling30(w, v)
|
||||
easyjson4354c623EncodeGithubComStrukturagNextcloudSpreedSignaling31(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *BackendClientAuthRequest) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling30(&r, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling31(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *BackendClientAuthRequest) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling30(l, v)
|
||||
easyjson4354c623DecodeGithubComStrukturagNextcloudSpreedSignaling31(l, v)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -220,7 +220,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling1(in *jlex
|
|||
if out.Error == nil {
|
||||
out.Error = new(Error)
|
||||
}
|
||||
(*out.Error).UnmarshalEasyJSON(in)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling2(in, out.Error)
|
||||
}
|
||||
case "hello":
|
||||
if in.IsNull() {
|
||||
|
|
@ -305,7 +305,7 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling1(out *jwr
|
|||
if in.Error != nil {
|
||||
const prefix string = ",\"error\":"
|
||||
out.RawString(prefix)
|
||||
(*in.Error).MarshalEasyJSON(out)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling2(out, *in.Error)
|
||||
}
|
||||
if in.Hello != nil {
|
||||
const prefix string = ",\"hello\":"
|
||||
|
|
@ -358,7 +358,65 @@ func (v *ProxyServerMessage) UnmarshalJSON(data []byte) error {
|
|||
func (v *ProxyServerMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling1(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling2(in *jlexer.Lexer, out *ProxyInformationEtcd) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling2(in *jlexer.Lexer, out *Error) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
in.Consumed()
|
||||
}
|
||||
in.Skip()
|
||||
return
|
||||
}
|
||||
in.Delim('{')
|
||||
for !in.IsDelim('}') {
|
||||
key := in.UnsafeFieldName(false)
|
||||
in.WantColon()
|
||||
if in.IsNull() {
|
||||
in.Skip()
|
||||
in.WantComma()
|
||||
continue
|
||||
}
|
||||
switch key {
|
||||
case "code":
|
||||
out.Code = string(in.String())
|
||||
case "message":
|
||||
out.Message = string(in.String())
|
||||
case "details":
|
||||
if data := in.Raw(); in.Ok() {
|
||||
in.AddError((out.Details).UnmarshalJSON(data))
|
||||
}
|
||||
default:
|
||||
in.SkipRecursive()
|
||||
}
|
||||
in.WantComma()
|
||||
}
|
||||
in.Delim('}')
|
||||
if isTopLevel {
|
||||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling2(out *jwriter.Writer, in Error) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
{
|
||||
const prefix string = ",\"code\":"
|
||||
out.RawString(prefix[1:])
|
||||
out.String(string(in.Code))
|
||||
}
|
||||
{
|
||||
const prefix string = ",\"message\":"
|
||||
out.RawString(prefix)
|
||||
out.String(string(in.Message))
|
||||
}
|
||||
if len(in.Details) != 0 {
|
||||
const prefix string = ",\"details\":"
|
||||
out.RawString(prefix)
|
||||
out.Raw((in.Details).MarshalJSON())
|
||||
}
|
||||
out.RawByte('}')
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling3(in *jlexer.Lexer, out *ProxyInformationEtcd) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -389,7 +447,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling2(in *jlex
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling2(out *jwriter.Writer, in ProxyInformationEtcd) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling3(out *jwriter.Writer, in ProxyInformationEtcd) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -404,27 +462,27 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling2(out *jwr
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v ProxyInformationEtcd) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling2(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling3(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v ProxyInformationEtcd) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling2(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling3(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *ProxyInformationEtcd) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling2(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling3(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *ProxyInformationEtcd) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling2(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling3(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling3(in *jlexer.Lexer, out *ProxyClientMessage) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling4(in *jlexer.Lexer, out *ProxyClientMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -497,7 +555,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling3(in *jlex
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling3(out *jwriter.Writer, in ProxyClientMessage) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling4(out *jwriter.Writer, in ProxyClientMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -543,27 +601,27 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling3(out *jwr
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v ProxyClientMessage) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling3(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling4(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v ProxyClientMessage) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling3(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling4(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *ProxyClientMessage) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling3(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling4(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *ProxyClientMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling3(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling4(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling4(in *jlexer.Lexer, out *PayloadProxyServerMessage) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling5(in *jlexer.Lexer, out *PayloadProxyServerMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -618,7 +676,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling4(in *jlex
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling4(out *jwriter.Writer, in PayloadProxyServerMessage) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling5(out *jwriter.Writer, in PayloadProxyServerMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -665,27 +723,27 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling4(out *jwr
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v PayloadProxyServerMessage) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling4(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling5(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v PayloadProxyServerMessage) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling4(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling5(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *PayloadProxyServerMessage) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling4(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling5(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *PayloadProxyServerMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling4(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling5(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling5(in *jlexer.Lexer, out *PayloadProxyClientMessage) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling6(in *jlexer.Lexer, out *PayloadProxyClientMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -746,7 +804,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling5(in *jlex
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling5(out *jwriter.Writer, in PayloadProxyClientMessage) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling6(out *jwriter.Writer, in PayloadProxyClientMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -796,27 +854,27 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling5(out *jwr
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v PayloadProxyClientMessage) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling5(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling6(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v PayloadProxyClientMessage) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling5(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling6(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *PayloadProxyClientMessage) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling5(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling6(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *PayloadProxyClientMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling5(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling6(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling6(in *jlexer.Lexer, out *HelloProxyServerMessage) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling7(in *jlexer.Lexer, out *HelloProxyServerMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -847,7 +905,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling6(in *jlex
|
|||
if out.Server == nil {
|
||||
out.Server = new(WelcomeServerMessage)
|
||||
}
|
||||
(*out.Server).UnmarshalEasyJSON(in)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling8(in, out.Server)
|
||||
}
|
||||
default:
|
||||
in.SkipRecursive()
|
||||
|
|
@ -859,7 +917,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling6(in *jlex
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling6(out *jwriter.Writer, in HelloProxyServerMessage) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling7(out *jwriter.Writer, in HelloProxyServerMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -876,7 +934,7 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling6(out *jwr
|
|||
if in.Server != nil {
|
||||
const prefix string = ",\"server\":"
|
||||
out.RawString(prefix)
|
||||
(*in.Server).MarshalEasyJSON(out)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling8(out, *in.Server)
|
||||
}
|
||||
out.RawByte('}')
|
||||
}
|
||||
|
|
@ -884,27 +942,113 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling6(out *jwr
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v HelloProxyServerMessage) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling6(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling7(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v HelloProxyServerMessage) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling6(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling7(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *HelloProxyServerMessage) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling6(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling7(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *HelloProxyServerMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling6(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling7(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling7(in *jlexer.Lexer, out *HelloProxyClientMessage) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling8(in *jlexer.Lexer, out *WelcomeServerMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
in.Consumed()
|
||||
}
|
||||
in.Skip()
|
||||
return
|
||||
}
|
||||
in.Delim('{')
|
||||
for !in.IsDelim('}') {
|
||||
key := in.UnsafeFieldName(false)
|
||||
in.WantColon()
|
||||
if in.IsNull() {
|
||||
in.Skip()
|
||||
in.WantComma()
|
||||
continue
|
||||
}
|
||||
switch key {
|
||||
case "version":
|
||||
out.Version = string(in.String())
|
||||
case "features":
|
||||
if in.IsNull() {
|
||||
in.Skip()
|
||||
out.Features = nil
|
||||
} else {
|
||||
in.Delim('[')
|
||||
if out.Features == nil {
|
||||
if !in.IsDelim(']') {
|
||||
out.Features = make([]string, 0, 4)
|
||||
} else {
|
||||
out.Features = []string{}
|
||||
}
|
||||
} else {
|
||||
out.Features = (out.Features)[:0]
|
||||
}
|
||||
for !in.IsDelim(']') {
|
||||
var v5 string
|
||||
v5 = string(in.String())
|
||||
out.Features = append(out.Features, v5)
|
||||
in.WantComma()
|
||||
}
|
||||
in.Delim(']')
|
||||
}
|
||||
case "country":
|
||||
out.Country = string(in.String())
|
||||
default:
|
||||
in.SkipRecursive()
|
||||
}
|
||||
in.WantComma()
|
||||
}
|
||||
in.Delim('}')
|
||||
if isTopLevel {
|
||||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling8(out *jwriter.Writer, in WelcomeServerMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
{
|
||||
const prefix string = ",\"version\":"
|
||||
out.RawString(prefix[1:])
|
||||
out.String(string(in.Version))
|
||||
}
|
||||
if len(in.Features) != 0 {
|
||||
const prefix string = ",\"features\":"
|
||||
out.RawString(prefix)
|
||||
{
|
||||
out.RawByte('[')
|
||||
for v6, v7 := range in.Features {
|
||||
if v6 > 0 {
|
||||
out.RawByte(',')
|
||||
}
|
||||
out.String(string(v7))
|
||||
}
|
||||
out.RawByte(']')
|
||||
}
|
||||
}
|
||||
if in.Country != "" {
|
||||
const prefix string = ",\"country\":"
|
||||
out.RawString(prefix)
|
||||
out.String(string(in.Country))
|
||||
}
|
||||
out.RawByte('}')
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling9(in *jlexer.Lexer, out *HelloProxyClientMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -943,9 +1087,9 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling7(in *jlex
|
|||
out.Features = (out.Features)[:0]
|
||||
}
|
||||
for !in.IsDelim(']') {
|
||||
var v5 string
|
||||
v5 = string(in.String())
|
||||
out.Features = append(out.Features, v5)
|
||||
var v8 string
|
||||
v8 = string(in.String())
|
||||
out.Features = append(out.Features, v8)
|
||||
in.WantComma()
|
||||
}
|
||||
in.Delim(']')
|
||||
|
|
@ -962,7 +1106,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling7(in *jlex
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling7(out *jwriter.Writer, in HelloProxyClientMessage) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling9(out *jwriter.Writer, in HelloProxyClientMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -981,11 +1125,11 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling7(out *jwr
|
|||
out.RawString(prefix)
|
||||
{
|
||||
out.RawByte('[')
|
||||
for v6, v7 := range in.Features {
|
||||
if v6 > 0 {
|
||||
for v9, v10 := range in.Features {
|
||||
if v9 > 0 {
|
||||
out.RawByte(',')
|
||||
}
|
||||
out.String(string(v7))
|
||||
out.String(string(v10))
|
||||
}
|
||||
out.RawByte(']')
|
||||
}
|
||||
|
|
@ -1001,27 +1145,27 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling7(out *jwr
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v HelloProxyClientMessage) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling7(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling9(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v HelloProxyClientMessage) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling7(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling9(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *HelloProxyClientMessage) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling7(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling9(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *HelloProxyClientMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling7(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling9(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling8(in *jlexer.Lexer, out *EventProxyServerMessage) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling10(in *jlexer.Lexer, out *EventProxyServerMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -1068,7 +1212,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling8(in *jlex
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling8(out *jwriter.Writer, in EventProxyServerMessage) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling10(out *jwriter.Writer, in EventProxyServerMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -1103,27 +1247,27 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling8(out *jwr
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v EventProxyServerMessage) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling8(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling10(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v EventProxyServerMessage) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling8(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling10(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *EventProxyServerMessage) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling8(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling10(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *EventProxyServerMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling8(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling10(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling9(in *jlexer.Lexer, out *EventProxyServerBandwidth) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling11(in *jlexer.Lexer, out *EventProxyServerBandwidth) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -1172,7 +1316,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling9(in *jlex
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling9(out *jwriter.Writer, in EventProxyServerBandwidth) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling11(out *jwriter.Writer, in EventProxyServerBandwidth) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -1198,27 +1342,27 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling9(out *jwr
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v EventProxyServerBandwidth) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling9(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling11(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v EventProxyServerBandwidth) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling9(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling11(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *EventProxyServerBandwidth) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling9(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling11(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *EventProxyServerBandwidth) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling9(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling11(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling10(in *jlexer.Lexer, out *CommandProxyServerMessage) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling12(in *jlexer.Lexer, out *CommandProxyServerMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -1259,9 +1403,9 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling10(in *jle
|
|||
out.Streams = (out.Streams)[:0]
|
||||
}
|
||||
for !in.IsDelim(']') {
|
||||
var v8 PublisherStream
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling11(in, &v8)
|
||||
out.Streams = append(out.Streams, v8)
|
||||
var v11 PublisherStream
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling13(in, &v11)
|
||||
out.Streams = append(out.Streams, v11)
|
||||
in.WantComma()
|
||||
}
|
||||
in.Delim(']')
|
||||
|
|
@ -1276,7 +1420,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling10(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling10(out *jwriter.Writer, in CommandProxyServerMessage) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling12(out *jwriter.Writer, in CommandProxyServerMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -1316,11 +1460,11 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling10(out *jw
|
|||
}
|
||||
{
|
||||
out.RawByte('[')
|
||||
for v9, v10 := range in.Streams {
|
||||
if v9 > 0 {
|
||||
for v12, v13 := range in.Streams {
|
||||
if v12 > 0 {
|
||||
out.RawByte(',')
|
||||
}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling11(out, v10)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling13(out, v13)
|
||||
}
|
||||
out.RawByte(']')
|
||||
}
|
||||
|
|
@ -1331,27 +1475,27 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling10(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v CommandProxyServerMessage) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling10(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling12(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v CommandProxyServerMessage) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling10(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling12(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *CommandProxyServerMessage) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling10(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling12(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *CommandProxyServerMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling10(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling12(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling11(in *jlexer.Lexer, out *PublisherStream) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling13(in *jlexer.Lexer, out *PublisherStream) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -1410,7 +1554,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling11(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling11(out *jwriter.Writer, in PublisherStream) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling13(out *jwriter.Writer, in PublisherStream) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -1491,7 +1635,7 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling11(out *jw
|
|||
}
|
||||
out.RawByte('}')
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling12(in *jlexer.Lexer, out *CommandProxyClientMessage) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling14(in *jlexer.Lexer, out *CommandProxyClientMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -1544,7 +1688,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling12(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling12(out *jwriter.Writer, in CommandProxyClientMessage) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling14(out *jwriter.Writer, in CommandProxyClientMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -1614,27 +1758,27 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling12(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v CommandProxyClientMessage) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling12(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling14(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v CommandProxyClientMessage) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling12(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling14(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *CommandProxyClientMessage) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling12(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling14(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *CommandProxyClientMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling12(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling14(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling13(in *jlexer.Lexer, out *ByeProxyServerMessage) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling15(in *jlexer.Lexer, out *ByeProxyServerMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -1665,7 +1809,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling13(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling13(out *jwriter.Writer, in ByeProxyServerMessage) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling15(out *jwriter.Writer, in ByeProxyServerMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -1680,27 +1824,27 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling13(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v ByeProxyServerMessage) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling13(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling15(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v ByeProxyServerMessage) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling13(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling15(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *ByeProxyServerMessage) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling13(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling15(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *ByeProxyServerMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling13(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling15(l, v)
|
||||
}
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling14(in *jlexer.Lexer, out *ByeProxyClientMessage) {
|
||||
func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling16(in *jlexer.Lexer, out *ByeProxyClientMessage) {
|
||||
isTopLevel := in.IsStart()
|
||||
if in.IsNull() {
|
||||
if isTopLevel {
|
||||
|
|
@ -1729,7 +1873,7 @@ func easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling14(in *jle
|
|||
in.Consumed()
|
||||
}
|
||||
}
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling14(out *jwriter.Writer, in ByeProxyClientMessage) {
|
||||
func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling16(out *jwriter.Writer, in ByeProxyClientMessage) {
|
||||
out.RawByte('{')
|
||||
first := true
|
||||
_ = first
|
||||
|
|
@ -1739,23 +1883,23 @@ func easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling14(out *jw
|
|||
// MarshalJSON supports json.Marshaler interface
|
||||
func (v ByeProxyClientMessage) MarshalJSON() ([]byte, error) {
|
||||
w := jwriter.Writer{}
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling14(&w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling16(&w, v)
|
||||
return w.Buffer.BuildBytes(), w.Error
|
||||
}
|
||||
|
||||
// MarshalEasyJSON supports easyjson.Marshaler interface
|
||||
func (v ByeProxyClientMessage) MarshalEasyJSON(w *jwriter.Writer) {
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling14(w, v)
|
||||
easyjson1c8542dbEncodeGithubComStrukturagNextcloudSpreedSignaling16(w, v)
|
||||
}
|
||||
|
||||
// UnmarshalJSON supports json.Unmarshaler interface
|
||||
func (v *ByeProxyClientMessage) UnmarshalJSON(data []byte) error {
|
||||
r := jlexer.Lexer{Data: data}
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling14(&r, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling16(&r, v)
|
||||
return r.Error()
|
||||
}
|
||||
|
||||
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
||||
func (v *ByeProxyClientMessage) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling14(l, v)
|
||||
easyjson1c8542dbDecodeGithubComStrukturagNextcloudSpreedSignaling16(l, v)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue