RL
Или где-то опечатались в json теге или в json, к примеру русскую a использовали
Size: a a a
RL
АВ
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *IssueRecursive) UnmarshalEasyJSON(l *jlexer.Lexer) {
easyjsonC80ae7adDecodeGithubComAndVl1BugTrackerBackendModel12(l, v)
}
func easyjsonC80ae7adDecodeGithubComAndVl1BugTrackerBackendModel13(in *jlexer.Lexer, out *Issue) {
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 "issueId":
out.Id = int(in.Int())
case "name":
out.Name = string(in.String())
case "projectIssueNumber":
out.ProjectIssueNumber = int(in.Int())
case "description":
out.Description = string(in.String())
case "authorId":
out.AuthorId = int(in.Int())
case "assigneeId":
out.AssigneeId = int(in.Int())
case "releaseVersion":
out.ReleaseVersion = int(in.Int())
case "creationDate":
out.CreationDate = int64(in.Int64())
case "deadline":
out.Deadline = int64(in.Int64())
case "projectId":
out.ProjectId = int(in.Int())
case "statusId":
out.StatusId = int(in.Int())
case "labelId":
out.LabelId = int(in.Int())
default:
in.SkipRecursive()
}
in.WantComma()
}
in.Delim('}')
if isTopLevel {
in.Consumed()
}
}НБ
DF
DF
RL
НБ
НБ
НБ
RL
RL
VY
АГ
АГ
VY
АГ
VY