github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_characters_character_id_calendar_200_ok_easyjson.go (about)

     1  // Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
     2  
     3  package esi
     4  
     5  import (
     6  	json "encoding/json"
     7  
     8  	easyjson "github.com/mailru/easyjson"
     9  	jlexer "github.com/mailru/easyjson/jlexer"
    10  	jwriter "github.com/mailru/easyjson/jwriter"
    11  )
    12  
    13  // suppress unused package warning
    14  var (
    15  	_ *json.RawMessage
    16  	_ *jlexer.Lexer
    17  	_ *jwriter.Writer
    18  	_ easyjson.Marshaler
    19  )
    20  
    21  func easyjsonB74f4c6eDecodeGithubComAntihaxGoesiEsi(in *jlexer.Lexer, out *GetCharactersCharacterIdCalendar200OkList) {
    22  	isTopLevel := in.IsStart()
    23  	if in.IsNull() {
    24  		in.Skip()
    25  		*out = nil
    26  	} else {
    27  		in.Delim('[')
    28  		if *out == nil {
    29  			if !in.IsDelim(']') {
    30  				*out = make(GetCharactersCharacterIdCalendar200OkList, 0, 0)
    31  			} else {
    32  				*out = GetCharactersCharacterIdCalendar200OkList{}
    33  			}
    34  		} else {
    35  			*out = (*out)[:0]
    36  		}
    37  		for !in.IsDelim(']') {
    38  			var v1 GetCharactersCharacterIdCalendar200Ok
    39  			(v1).UnmarshalEasyJSON(in)
    40  			*out = append(*out, v1)
    41  			in.WantComma()
    42  		}
    43  		in.Delim(']')
    44  	}
    45  	if isTopLevel {
    46  		in.Consumed()
    47  	}
    48  }
    49  func easyjsonB74f4c6eEncodeGithubComAntihaxGoesiEsi(out *jwriter.Writer, in GetCharactersCharacterIdCalendar200OkList) {
    50  	if in == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
    51  		out.RawString("null")
    52  	} else {
    53  		out.RawByte('[')
    54  		for v2, v3 := range in {
    55  			if v2 > 0 {
    56  				out.RawByte(',')
    57  			}
    58  			(v3).MarshalEasyJSON(out)
    59  		}
    60  		out.RawByte(']')
    61  	}
    62  }
    63  
    64  // MarshalJSON supports json.Marshaler interface
    65  func (v GetCharactersCharacterIdCalendar200OkList) MarshalJSON() ([]byte, error) {
    66  	w := jwriter.Writer{}
    67  	easyjsonB74f4c6eEncodeGithubComAntihaxGoesiEsi(&w, v)
    68  	return w.Buffer.BuildBytes(), w.Error
    69  }
    70  
    71  // MarshalEasyJSON supports easyjson.Marshaler interface
    72  func (v GetCharactersCharacterIdCalendar200OkList) MarshalEasyJSON(w *jwriter.Writer) {
    73  	easyjsonB74f4c6eEncodeGithubComAntihaxGoesiEsi(w, v)
    74  }
    75  
    76  // UnmarshalJSON supports json.Unmarshaler interface
    77  func (v *GetCharactersCharacterIdCalendar200OkList) UnmarshalJSON(data []byte) error {
    78  	r := jlexer.Lexer{Data: data}
    79  	easyjsonB74f4c6eDecodeGithubComAntihaxGoesiEsi(&r, v)
    80  	return r.Error()
    81  }
    82  
    83  // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
    84  func (v *GetCharactersCharacterIdCalendar200OkList) UnmarshalEasyJSON(l *jlexer.Lexer) {
    85  	easyjsonB74f4c6eDecodeGithubComAntihaxGoesiEsi(l, v)
    86  }
    87  func easyjsonB74f4c6eDecodeGithubComAntihaxGoesiEsi1(in *jlexer.Lexer, out *GetCharactersCharacterIdCalendar200Ok) {
    88  	isTopLevel := in.IsStart()
    89  	if in.IsNull() {
    90  		if isTopLevel {
    91  			in.Consumed()
    92  		}
    93  		in.Skip()
    94  		return
    95  	}
    96  	in.Delim('{')
    97  	for !in.IsDelim('}') {
    98  		key := in.UnsafeFieldName(false)
    99  		in.WantColon()
   100  		if in.IsNull() {
   101  			in.Skip()
   102  			in.WantComma()
   103  			continue
   104  		}
   105  		switch key {
   106  		case "event_date":
   107  			if data := in.Raw(); in.Ok() {
   108  				in.AddError((out.EventDate).UnmarshalJSON(data))
   109  			}
   110  		case "event_id":
   111  			out.EventId = int32(in.Int32())
   112  		case "event_response":
   113  			out.EventResponse = string(in.String())
   114  		case "importance":
   115  			out.Importance = int32(in.Int32())
   116  		case "title":
   117  			out.Title = string(in.String())
   118  		default:
   119  			in.SkipRecursive()
   120  		}
   121  		in.WantComma()
   122  	}
   123  	in.Delim('}')
   124  	if isTopLevel {
   125  		in.Consumed()
   126  	}
   127  }
   128  func easyjsonB74f4c6eEncodeGithubComAntihaxGoesiEsi1(out *jwriter.Writer, in GetCharactersCharacterIdCalendar200Ok) {
   129  	out.RawByte('{')
   130  	first := true
   131  	_ = first
   132  	if true {
   133  		const prefix string = ",\"event_date\":"
   134  		first = false
   135  		out.RawString(prefix[1:])
   136  		out.Raw((in.EventDate).MarshalJSON())
   137  	}
   138  	if in.EventId != 0 {
   139  		const prefix string = ",\"event_id\":"
   140  		if first {
   141  			first = false
   142  			out.RawString(prefix[1:])
   143  		} else {
   144  			out.RawString(prefix)
   145  		}
   146  		out.Int32(int32(in.EventId))
   147  	}
   148  	if in.EventResponse != "" {
   149  		const prefix string = ",\"event_response\":"
   150  		if first {
   151  			first = false
   152  			out.RawString(prefix[1:])
   153  		} else {
   154  			out.RawString(prefix)
   155  		}
   156  		out.String(string(in.EventResponse))
   157  	}
   158  	if in.Importance != 0 {
   159  		const prefix string = ",\"importance\":"
   160  		if first {
   161  			first = false
   162  			out.RawString(prefix[1:])
   163  		} else {
   164  			out.RawString(prefix)
   165  		}
   166  		out.Int32(int32(in.Importance))
   167  	}
   168  	if in.Title != "" {
   169  		const prefix string = ",\"title\":"
   170  		if first {
   171  			first = false
   172  			out.RawString(prefix[1:])
   173  		} else {
   174  			out.RawString(prefix)
   175  		}
   176  		out.String(string(in.Title))
   177  	}
   178  	out.RawByte('}')
   179  }
   180  
   181  // MarshalJSON supports json.Marshaler interface
   182  func (v GetCharactersCharacterIdCalendar200Ok) MarshalJSON() ([]byte, error) {
   183  	w := jwriter.Writer{}
   184  	easyjsonB74f4c6eEncodeGithubComAntihaxGoesiEsi1(&w, v)
   185  	return w.Buffer.BuildBytes(), w.Error
   186  }
   187  
   188  // MarshalEasyJSON supports easyjson.Marshaler interface
   189  func (v GetCharactersCharacterIdCalendar200Ok) MarshalEasyJSON(w *jwriter.Writer) {
   190  	easyjsonB74f4c6eEncodeGithubComAntihaxGoesiEsi1(w, v)
   191  }
   192  
   193  // UnmarshalJSON supports json.Unmarshaler interface
   194  func (v *GetCharactersCharacterIdCalendar200Ok) UnmarshalJSON(data []byte) error {
   195  	r := jlexer.Lexer{Data: data}
   196  	easyjsonB74f4c6eDecodeGithubComAntihaxGoesiEsi1(&r, v)
   197  	return r.Error()
   198  }
   199  
   200  // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
   201  func (v *GetCharactersCharacterIdCalendar200Ok) UnmarshalEasyJSON(l *jlexer.Lexer) {
   202  	easyjsonB74f4c6eDecodeGithubComAntihaxGoesiEsi1(l, v)
   203  }