Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Address ¶
type Address struct { // ID string `db:"id"` Name string `db:"name"` Address string `db:"address"` City string `db:"city"` State string `db:"state"` PostalCode string `db:"postal_code"` Latitude float64 `db:"latitude"` Longitude float64 `db:"longitude"` IsPrimary bool `db:"is_primary"` PhoneNumber string `db:"phone_number"` CreatedAt int64 `db:"created_at"` UpdatedAt int64 `db:"updated_at"` UserID string `db:"user_id"` }
type Cart ¶
type Product ¶
type PropertyWishlist ¶
type PropertyWishlist struct { // ID string `json:"id" db:"id"` CreatedAt int64 `json:"created_at" db:"created_at"` UserID string `json:"user_id" db:"user_id"` PropertyID string `json:"property_id" db:"property_id"` }
func (PropertyWishlist) TableName ¶
func (e PropertyWishlist) TableName() string
type Refresh ¶
type User ¶
type User struct { ID string `json:"id" db:"id"` Name string `json:"name" db:"name"` Username string `json:"username" db:"username"` Email string `json:"email" db:"email"` Password string `json:"password" db:"password"` PhoneNumber string `json:"phone_number" db:"phone_number"` Status string `json:"status" db:"status"` IsGoogle bool `json:"is_google" db:"is_google"` IsFacebook bool `json:"is_facebook" db:"is_facebook"` PhotoUrl string `json:"photo_url" db:"photo_url"` CreatedAt int64 `json:"created_at" db:"created_at"` UpdatedAt int64 `json:"updated_at" db:"updated_at"` }
Click to show internal directories.
Click to hide internal directories.