models

package
v0.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 17, 2023 License: MIT Imports: 2 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Campground

type Campground struct {
	Activities []struct {
		ActivityDescription    string `json:"activity_description"`
		ActivityFeeDescription string `json:"activity_fee_description"`
		ActivityID             int    `json:"activity_id"`
		ActivityName           string `json:"activity_name"`
	} `json:"activities"`
	Addresses []struct {
		AddressType    string `json:"address_type"`
		City           string `json:"city"`
		CountryCode    string `json:"country_code"`
		PostalCode     string `json:"postal_code"`
		StateCode      string `json:"state_code"`
		StreetAddress1 string `json:"street_address1"`
		StreetAddress2 string `json:"street_address2"`
		StreetAddress3 string `json:"street_address3"`
	} `json:"addresses"`
	AggregateCellCoverage float64   `json:"aggregate_cell_coverage"`
	AverageRating         float64   `json:"average_rating"`
	CampsiteEquipmentName []string  `json:"campsite_equipment_name"`
	CampsiteReserveType   []string  `json:"campsite_reserve_type"`
	CampsiteTypeOfUse     []string  `json:"campsite_type_of_use"`
	CampsitesCount        string    `json:"campsites_count"`
	City                  string    `json:"city"`
	CountryCode           string    `json:"country_code"`
	Description           string    `json:"description"`
	Directions            string    `json:"directions"`
	EntityID              string    `json:"entity_id"`
	EntityType            string    `json:"entity_type"`
	IsInventory           bool      `json:"is_inventory"`
	GoLiveDate            time.Time `json:"go_live_date"`
	HTMLDescription       string    `json:"html_description"`
	ID                    string    `json:"id"`
	Latitude              string    `json:"latitude"`
	Links                 []struct {
		Description string `json:"description"`
		LinkType    string `json:"link_type"`
		Title       string `json:"title"`
		URL         string `json:"url"`
	} `json:"links"`
	Longitude string `json:"longitude"`
	Name      string `json:"name"`
	Notices   []struct {
		Text string `json:"text"`
		Type string `json:"type"`
	} `json:"notices"`
	NumberOfRatings int    `json:"number_of_ratings"`
	OrgID           string `json:"org_id"`
	OrgName         string `json:"org_name"`
	ParentID        string `json:"parent_id"`
	ParentName      string `json:"parent_name"`
	ParentType      string `json:"parent_type"`
	PreviewImageURL string `json:"preview_image_url"`
	PriceRange      struct {
		AmountMax float64 `json:"amount_max"`
		AmountMin float64 `json:"amount_min"`
		PerUnit   string  `json:"per_unit"`
	} `json:"price_range"`
	Rate []struct {
		EndDate time.Time `json:"end_date"`
		Prices  []struct {
			Amount    float64 `json:"amount"`
			Attribute string  `json:"attribute"`
		} `json:"prices"`
		RateMap struct {
			PeakSTANDARDNONELECTRIC struct {
				GroupFees        any `json:"group_fees"`
				SingleAmountFees struct {
					Deposit   int `json:"deposit"`
					Holiday   int `json:"holiday"`
					PerNight  int `json:"per_night"`
					PerPerson int `json:"per_person"`
					Weekend   int `json:"weekend"`
				} `json:"single_amount_fees"`
			} `json:"PeakSTANDARD NONELECTRIC"`
		} `json:"rate_map"`
		SeasonDescription string    `json:"season_description"`
		SeasonType        string    `json:"season_type"`
		StartDate         time.Time `json:"start_date"`
	} `json:"rate"`
	Reservable bool   `json:"reservable"`
	StateCode  string `json:"state_code"`
	Text       string `json:"text"`
	TimeZone   string `json:"time_zone"`
	Type       string `json:"type"`
}

func (*Campground) UnmarshalJSON added in v0.2.0

func (c *Campground) UnmarshalJSON(data []byte) error

Note: We use a custom UnmarshalJSON function here because the schema returned by '/search' and '/search/suggest' varies slightly, with the latter returning lat, lng, parent_entity_id, and parent_entity_type rather than the JSON field names defined in the JSON struct tags above.

type Campsite

type Campsite struct {
	Availabilities      map[string]string `json:"availabilities"`
	CampsiteID          string            `json:"campsite_id"`
	CampsiteReserveType string            `json:"campsite_reserve_type"`
	CampsiteRules       interface{}       `json:"campsite_rules"`
	CampsiteType        string            `json:"campsite_type"`
	CapacityRating      string            `json:"capacity_rating"`
	Loop                string            `json:"loop"`
	MaxNumPeople        int               `json:"max_num_people"`
	MinNumPeople        int               `json:"min_num_people"`
	Quantities          interface{}       `json:"quantities"`
	Site                string            `json:"site"`
	SupplementalCamping any               `json:"supplemental_camping"`
	TypeOfUse           string            `json:"type_of_use"`
}

type Campsites

type Campsites []*Campsite

func (Campsites) Len

func (cs Campsites) Len() int

Implement the Sort interface.

func (Campsites) Less

func (cs Campsites) Less(i, j int) bool

func (Campsites) Swap

func (cs Campsites) Swap(i, j int)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL