-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
Summary
Organize Related Information
type CampgroundSearchOutput struct {
Campgrounds []models.Campground `json:"campgrounds"`
GroupedByFeature map[string][]models.Campground `json:"grouped_by_feature,omitempty"`
Summary CampgroundSummary `json:"summary"`
}
type CampgroundSummary struct {
TotalFound int `json:"total_found"`
WithElectricity int `json:"with_electricity"`
PetFriendly int `json:"pet_friendly"`
ReservableOnline int `json:"reservable_online"`
PopularAmenities []string `json:"popular_amenities"`
}Reactions are currently unavailable