github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_sovereignty_structures_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 easyjson1e8c5b0bDecodeGithubComAntihaxGoesiEsi(in *jlexer.Lexer, out *GetSovereigntyStructures200OkList) {
    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(GetSovereigntyStructures200OkList, 0, 0)
    31  			} else {
    32  				*out = GetSovereigntyStructures200OkList{}
    33  			}
    34  		} else {
    35  			*out = (*out)[:0]
    36  		}
    37  		for !in.IsDelim(']') {
    38  			var v1 GetSovereigntyStructures200Ok
    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 easyjson1e8c5b0bEncodeGithubComAntihaxGoesiEsi(out *jwriter.Writer, in GetSovereigntyStructures200OkList) {
    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 GetSovereigntyStructures200OkList) MarshalJSON() ([]byte, error) {
    66  	w := jwriter.Writer{}
    67  	easyjson1e8c5b0bEncodeGithubComAntihaxGoesiEsi(&w, v)
    68  	return w.Buffer.BuildBytes(), w.Error
    69  }
    70  
    71  // MarshalEasyJSON supports easyjson.Marshaler interface
    72  func (v GetSovereigntyStructures200OkList) MarshalEasyJSON(w *jwriter.Writer) {
    73  	easyjson1e8c5b0bEncodeGithubComAntihaxGoesiEsi(w, v)
    74  }
    75  
    76  // UnmarshalJSON supports json.Unmarshaler interface
    77  func (v *GetSovereigntyStructures200OkList) UnmarshalJSON(data []byte) error {
    78  	r := jlexer.Lexer{Data: data}
    79  	easyjson1e8c5b0bDecodeGithubComAntihaxGoesiEsi(&r, v)
    80  	return r.Error()
    81  }
    82  
    83  // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
    84  func (v *GetSovereigntyStructures200OkList) UnmarshalEasyJSON(l *jlexer.Lexer) {
    85  	easyjson1e8c5b0bDecodeGithubComAntihaxGoesiEsi(l, v)
    86  }
    87  func easyjson1e8c5b0bDecodeGithubComAntihaxGoesiEsi1(in *jlexer.Lexer, out *GetSovereigntyStructures200Ok) {
    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 "alliance_id":
   107  			out.AllianceId = int32(in.Int32())
   108  		case "solar_system_id":
   109  			out.SolarSystemId = int32(in.Int32())
   110  		case "structure_id":
   111  			out.StructureId = int64(in.Int64())
   112  		case "structure_type_id":
   113  			out.StructureTypeId = int32(in.Int32())
   114  		case "vulnerability_occupancy_level":
   115  			out.VulnerabilityOccupancyLevel = float32(in.Float32())
   116  		case "vulnerable_end_time":
   117  			if data := in.Raw(); in.Ok() {
   118  				in.AddError((out.VulnerableEndTime).UnmarshalJSON(data))
   119  			}
   120  		case "vulnerable_start_time":
   121  			if data := in.Raw(); in.Ok() {
   122  				in.AddError((out.VulnerableStartTime).UnmarshalJSON(data))
   123  			}
   124  		default:
   125  			in.SkipRecursive()
   126  		}
   127  		in.WantComma()
   128  	}
   129  	in.Delim('}')
   130  	if isTopLevel {
   131  		in.Consumed()
   132  	}
   133  }
   134  func easyjson1e8c5b0bEncodeGithubComAntihaxGoesiEsi1(out *jwriter.Writer, in GetSovereigntyStructures200Ok) {
   135  	out.RawByte('{')
   136  	first := true
   137  	_ = first
   138  	if in.AllianceId != 0 {
   139  		const prefix string = ",\"alliance_id\":"
   140  		first = false
   141  		out.RawString(prefix[1:])
   142  		out.Int32(int32(in.AllianceId))
   143  	}
   144  	if in.SolarSystemId != 0 {
   145  		const prefix string = ",\"solar_system_id\":"
   146  		if first {
   147  			first = false
   148  			out.RawString(prefix[1:])
   149  		} else {
   150  			out.RawString(prefix)
   151  		}
   152  		out.Int32(int32(in.SolarSystemId))
   153  	}
   154  	if in.StructureId != 0 {
   155  		const prefix string = ",\"structure_id\":"
   156  		if first {
   157  			first = false
   158  			out.RawString(prefix[1:])
   159  		} else {
   160  			out.RawString(prefix)
   161  		}
   162  		out.Int64(int64(in.StructureId))
   163  	}
   164  	if in.StructureTypeId != 0 {
   165  		const prefix string = ",\"structure_type_id\":"
   166  		if first {
   167  			first = false
   168  			out.RawString(prefix[1:])
   169  		} else {
   170  			out.RawString(prefix)
   171  		}
   172  		out.Int32(int32(in.StructureTypeId))
   173  	}
   174  	if in.VulnerabilityOccupancyLevel != 0 {
   175  		const prefix string = ",\"vulnerability_occupancy_level\":"
   176  		if first {
   177  			first = false
   178  			out.RawString(prefix[1:])
   179  		} else {
   180  			out.RawString(prefix)
   181  		}
   182  		out.Float32(float32(in.VulnerabilityOccupancyLevel))
   183  	}
   184  	if true {
   185  		const prefix string = ",\"vulnerable_end_time\":"
   186  		if first {
   187  			first = false
   188  			out.RawString(prefix[1:])
   189  		} else {
   190  			out.RawString(prefix)
   191  		}
   192  		out.Raw((in.VulnerableEndTime).MarshalJSON())
   193  	}
   194  	if true {
   195  		const prefix string = ",\"vulnerable_start_time\":"
   196  		if first {
   197  			first = false
   198  			out.RawString(prefix[1:])
   199  		} else {
   200  			out.RawString(prefix)
   201  		}
   202  		out.Raw((in.VulnerableStartTime).MarshalJSON())
   203  	}
   204  	out.RawByte('}')
   205  }
   206  
   207  // MarshalJSON supports json.Marshaler interface
   208  func (v GetSovereigntyStructures200Ok) MarshalJSON() ([]byte, error) {
   209  	w := jwriter.Writer{}
   210  	easyjson1e8c5b0bEncodeGithubComAntihaxGoesiEsi1(&w, v)
   211  	return w.Buffer.BuildBytes(), w.Error
   212  }
   213  
   214  // MarshalEasyJSON supports easyjson.Marshaler interface
   215  func (v GetSovereigntyStructures200Ok) MarshalEasyJSON(w *jwriter.Writer) {
   216  	easyjson1e8c5b0bEncodeGithubComAntihaxGoesiEsi1(w, v)
   217  }
   218  
   219  // UnmarshalJSON supports json.Unmarshaler interface
   220  func (v *GetSovereigntyStructures200Ok) UnmarshalJSON(data []byte) error {
   221  	r := jlexer.Lexer{Data: data}
   222  	easyjson1e8c5b0bDecodeGithubComAntihaxGoesiEsi1(&r, v)
   223  	return r.Error()
   224  }
   225  
   226  // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
   227  func (v *GetSovereigntyStructures200Ok) UnmarshalEasyJSON(l *jlexer.Lexer) {
   228  	easyjson1e8c5b0bDecodeGithubComAntihaxGoesiEsi1(l, v)
   229  }