16 lines
597 B
Go
16 lines
597 B
Go
package viewmodel
|
|
|
|
type Address struct {
|
|
UUID string `json:"address_uuid,omitempty"`
|
|
InternalID string `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Address string `json:"address,omitempty"`
|
|
AddressType string `json:"address_type,omitempty"`
|
|
AddressTypeName string `json:"address_type_name,omitempty"`
|
|
Latitude float64 `json:"lat,omitempty"`
|
|
Longitude float64 `json:"lng,omitempty"`
|
|
Type string `json:"type,omitempty"`
|
|
User User `json:"user,omitempty"`
|
|
CreatedUserUUID string `json:"-"`
|
|
}
|