Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Customer ¶
type Customer struct { ID string `json:"id"` FirstName string `json:"firstName"` LastName string `json:"lastName"` Age int `json:"age"` TaxNumber string `json:"taxNumber"` City string `json:"city"` }
func (Customer) MarshalEasyJSON ¶
MarshalEasyJSON supports easyjson.Marshaler interface
func (Customer) MarshalJSON ¶
MarshalJSON supports json.Marshaler interface
func (*Customer) UnmarshalEasyJSON ¶
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*Customer) UnmarshalJSON ¶
UnmarshalJSON supports json.Unmarshaler interface
type SourceCustomer ¶
type SourceCustomer struct { ID string `json:"id"` FirstName string `json:"firstName"` LastName string `json:"lastName"` Age int `json:"age"` City string `json:"city"` }
func (SourceCustomer) MarshalEasyJSON ¶
func (v SourceCustomer) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (SourceCustomer) MarshalJSON ¶
func (v SourceCustomer) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*SourceCustomer) UnmarshalEasyJSON ¶
func (v *SourceCustomer) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*SourceCustomer) UnmarshalJSON ¶
func (v *SourceCustomer) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
Click to show internal directories.
Click to hide internal directories.