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:"first_name"`
MiddleName string `json:"middle_name,omitempty"`
LastName string `json:"last_name"`
Email string `json:"email"`
Password string `json:"-"`
StatusID int32 `json:"status_id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
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
Click to show internal directories.
Click to hide internal directories.