response

package
v0.0.81 Latest Latest
Warning

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

Go to latest
Published: Mar 6, 2023 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

Functions

This section is empty.

Types

type Address

type Address struct {
	Street  string `xml:"street"`
	ZIP     string `xml:"zip"`
	ZIPCode string `xml:"zipcode"`
	City    string `xml:"city"`
	// The ISO 3166 alpha-3 code
	Country       string `xml:"country"`
	URLStreetview string `xml:"url_streetview"`
}

type Availabilities added in v0.0.52

type Availabilities []bool

func (*Availabilities) UnmarshalXML added in v0.0.52

func (input *Availabilities) UnmarshalXML(decoder *xml.Decoder, start xml.StartElement) error

type Bank

type Bank struct {
	Name  string `xml:"name"`
	IBAN  string `xml:"iban"`
	SWIFT string `xml:"swift"`
}

type BoardBit added in v0.0.60

type BoardBit int
const (
	BoardBitUndefined    BoardBit = 0
	BoardBitWithoutBoard BoardBit = 1 << (iota - 1)
	BoardBitWithBreakfast
	BoardBitHalfBoard
	BoardBitFullBoard
	BoardBitAllInclusive
)

type Booking

type Booking struct {
	Inquiry
	StornoID    string          `xml:"storno_id"`
	Status      bool            `xml:"booking_status"`
	Cancelled   CancelledStatus `xml:"cancelled"`
	Company     Company         `xml:"company"`
	Payment     Payment         `xml:"payment"`
	Rooms       []Room          `xml:"room"`
	ExtraPrices []Price         `xml:"extra_price"`
	Offers      []Offer         `xml:"offer"`
	Insurance   Insurance       `xml:"insurance"`
	Coupon      Coupon          `xml:"coupon"`
}

type CancelPolicy

type CancelPolicy struct {
	ID              int       `xml:"id"`
	Refundable      bool      `xml:"refundable"`
	RefundableUntil DateTime  `xml:"refundable_until"`
	Penalties       []Penalty `xml:"penalties>penalty"`
	// Description can contain \n characters.
	Description string `xml:"description"`
	Priority    string `xml:"priority"`
}

type CancelledStatus added in v0.0.49

type CancelledStatus int
const (
	CancelledStatusNotCancelled CancelledStatus = iota
	CancelledStatusCancelled
	CancelledStatusNoShow CancelledStatus = iota + 5
	CancelledStatusUnknown
)

All statuses can be cancelled with cancelBooking except for Cancelled (1)

type Channel

type Channel struct {
	ID                      string                   `xml:"channel_id"`
	OfferID                 int                      `xml:"offer_id"`
	OfferDescriptions       []Offer                  `xml:"offer_description>offer"`
	RoomPrices              []RoomPrice              `xml:"room_price>price"`
	RoomDescriptions        []Room                   `xml:"room_description>room"`
	ServicePrices           []Price                  `xml:"service_price>price"`
	FromPrice               int                      `xml:"from_price"`
	BasePrices              []RoomPrice              `xml:"base_price>price"`
	CancelPolicies          []CancelPolicy           `xml:"cancel_policies>cancel_policy"`
	PaymentTerms            []PaymentTerm            `xml:"payment_terms>payment_term"`
	PriceList               ChannelPriceList         `xml:"pricelist"`
	RestrictionDescriptions []RestrictionDescription `xml:"restriction_description>restriction"`
}

type ChannelPriceList

type ChannelPriceList struct {
	OfferID    int     `xml:"offer_id"`
	Inclusives []Price `xml:"inclusive>price"`
}

type CheckIn added in v0.0.31

type CheckIn struct {
	From string `xml:"from"`
	To   string `xml:"to"`
	Note string `xml:"note"`
}

The From/To fields are inserted by users as strings without a specific format, so they can’t be parsed as time.Time.

type CheckOut added in v0.0.31

type CheckOut struct {
	From string `xml:"from"`
	To   string `xml:"to"`
}

type Company

type Company struct {
	Name          string  `xml:"name"`
	Taxnumber     string  `xml:"taxnumber"`
	RecipientCode string  `xml:"recipient_code"`
	Address       Address `xml:"address"`
}

type Contact

type Contact struct {
	Email string `xml:"email"`
	Phone string `xml:"phone"`
	Fax   string `xml:"fax"`
	Web   string `xml:"web"`
}

type Coupon

type Coupon struct {
	Type      shared.CouponType    `xml:"coupon_type"`
	Code      string               `xml:"coupon_code"`
	Status    CouponStatus         `xml:"coupon_status"`
	Valid     bool                 `xml:"coupon_valid"`
	ValidFrom DateTimeWithTimeZone `xml:"coupon_valid_from"`
	ValidTo   DateTimeWithTimeZone `xml:"coupon_valid_to"`
	Title     string               `xml:"coupon_title"`
	Percent   float64              `xml:"coupon_percent"`
	Amount    float64              `xml:"coupon_amount"`
}

type CouponProvider added in v0.0.60

type CouponProvider int
const (
	CouponProviderNone CouponProvider = iota
	CouponProviderEasiCoupon
	CouponProviderGetavo
	CouponProviderAdditive
)

type CouponService

type CouponService struct {
	Provider CouponProvider `xml:"provider"`
}

type CouponStatus added in v0.0.61

type CouponStatus string
const (
	CouponStatusRegistered CouponStatus = "registered"
	CouponStatusRedeemable CouponStatus = "redeemable"
	CouponStatusRedeemed   CouponStatus = "redeemed"
	CouponStatusExpired    CouponStatus = "expired"
	CouponStatusCancelled  CouponStatus = "cancelled"
	CouponStatusUnknown    CouponStatus = "unknown"
)

type DateTime added in v0.0.11

type DateTime struct{ time.Time }

func (*DateTime) UnmarshalXML added in v0.0.11

func (t *DateTime) UnmarshalXML(decoder *xml.Decoder, start xml.StartElement) error

type DateTimeWithTimeZone added in v0.0.61

type DateTimeWithTimeZone struct{ time.Time }

func (*DateTimeWithTimeZone) UnmarshalXML added in v0.0.61

func (t *DateTimeWithTimeZone) UnmarshalXML(decoder *xml.Decoder, start xml.StartElement) error

type Day

type Day struct {
	Date         shared.Date   `xml:"date"`
	Free         int           `xml:"free"`
	Restrictions []Restriction `xml:"restrictions>restriction"`
}

type Duration added in v0.0.52

type Duration struct {
	time.Duration
}

func (*Duration) UnmarshalXML added in v0.0.52

func (input *Duration) UnmarshalXML(decoder *xml.Decoder, start xml.StartElement) error

type Error

type Error struct {
	Code    ErrorCode `xml:"code"`
	Message string    `xml:"message"`
}

type ErrorCode added in v0.0.13

type ErrorCode int
const (
	ErrorCodeGenericError ErrorCode = 1 << iota
	ErrorCodeAuthenticationError
	ErrorCodeInvalidXML
	ErrorCodeInvalidMethod
	ErrorCodeResultIDNotInCache
	ErrorCodeInvalidMissingParameter
	ErrorCodeBookingValidationFailed
	ErrorCodePermissionsDenied
	ErrorCodeMaxStayExceeded
)

type Feature

type Feature struct {
	ID    int    `xml:"id"`
	Title string `xml:"title"`
}

type Field

type Field struct {
	Name  string `xml:"name"`
	Value string `xml:"value"`
}

type Form

type Form struct {
	URL     string       `xml:"form_url"`
	Iframe  FormIframe   `xml:"form_iframe"`
	Methods []FormMethod `xml:"form_methods>method"`
	Fields  []FormField  `xml:"form_fields>field"`
}

type FormField added in v0.0.61

type FormField struct {
	Name  string `xml:"name"`
	Value string `xml:"value"`
}

type FormIframe added in v0.0.60

type FormIframe int
const (
	FormIframeNotAllowed FormIframe = iota
	FormIframeAllowed
	FormIframeAllowedIfHTTPS
)

type FormMethod added in v0.0.60

type FormMethod string
const (
	FormMethodPOST FormMethod = "POST"
	FormMethodGET  FormMethod = "GET"
)

type Geolocation

type Geolocation struct {
	Latitude  float64 `xml:"latitude"`
	Longitude float64 `xml:"longitude"`
	Altitude  float64 `xml:"altitude"`
	Distance  float64 `xml:"distance"`
}

type Guest

type Guest struct {
	ID        int           `xml:"guest_id"`
	FirstName string        `xml:"firstname"`
	LastName  string        `xml:"lastname"`
	Prefix    string        `xml:"prefix"`
	Gender    shared.Gender `xml:"gender"`
	Email     string        `xml:"email"`
	Phone     string        `xml:"phone"`
	Address   Address       `xml:"address"`
}
type Header struct {
	Error     Error     `xml:"error"`
	ResultID  string    `xml:"result_id"`
	Source    string    `xml:"source"`
	Paging    Paging    `xml:"paging"`
	RateLimit RateLimit `xml:"rate_limit"`
	Time      string    `xml:"time"`
}

type Hotel

type Hotel struct {
	ID                    int                  `xml:"id"`
	IDLTS                 string               `xml:"id_lts"`
	Bookable              bool                 `xml:"bookable"`
	Name                  string               `xml:"name"`
	Type                  shared.HotelType     `xml:"type"`
	Stars                 shared.HotelStars    `xml:"stars"`
	Address               Address              `xml:"address"`
	Themes                shared.Theme         `xml:"themes"`
	Features              shared.HotelFeature  `xml:"features"`
	Location              HotelLocation        `xml:"location"`
	LocationName          LocationName         `xml:"location_name"`
	Geolocation           Geolocation          `xml:"geolocation"`
	Contact               Contact              `xml:"contact"`
	Headline              NormalizedHTMLString `xml:"headline"`
	Description           NormalizedHTMLString `xml:"description"`
	Payment               HotelPayment         `xml:"hotel_payment"`
	Matching              Matching             `xml:"matching"`
	Pictures              []Picture            `xml:"pictures>picture"`
	AvailableFrom         shared.Date          `xml:"available_from"`
	PricesChangedAt       DateTime             `xml:"prices_changed_at"`
	AvailabilityChangedAt DateTime             `xml:"availability_changed_at"`
	BookableUntil         Time                 `xml:"bookable_until"`
	Gallery               []Picture            `xml:"gallery>picture"`
	FeaturesView          []Feature            `xml:"features_view>feature"`
	Channel               Channel              `xml:"channel"`
	LTSData               shared.LTSData       `xml:"lts_data"`
	POS                   []string             `xml:"pos>id_pos"`
	PriceEngine           PriceEngine          `xml:"price_engine"`
	Language              language.Tag         `xml:"language"`
	CheckIn               CheckIn              `xml:"check_in"`
	CheckOut              CheckOut             `xml:"check_out"`
	PriceFrom             int                  `xml:"price_from"`
	Board                 BoardBit             `xml:"board"`
	BoardThreeQuarters    bool                 `xml:"board_tq"`
	PersAgeMin            int                  `xml:"pers_age_min"`
	ChildAgeMin           int                  `xml:"child_age_min"`
	AdultAgeMin           int                  `xml:"adult_age_min"`
	ChildAgeMax           int                  `xml:"child_age_max"`
	AdultCntMax           int                  `xml:"adult_cnt_max"`
	ChildCntMax           int                  `xml:"child_cnt_max"`
	Ratings               []Rating             `xml:"ratings>rating"`
	SourceData            SourceData           `xml:"source_data"`
	Coupon                CouponService        `xml:"coupon"`
	RoomTypes             shared.RoomType      `xml:"room_types"`
	InformalMail          bool                 `xml:"informal_mail"`
}

type HotelLocation

type HotelLocation struct {
	IDCity      int `xml:"id_city"`
	IDCommunity int `xml:"id_community"`
	IDRegion    int `xml:"id_region"`
	IDArea      int `xml:"id_area"`
}

type HotelPayment

type HotelPayment struct {
	Methods PaymentMethods `xml:"methods"`
}

type Inquiry added in v0.0.74

type Inquiry struct {
	ID        int          `xml:"booking_id"`
	Date      DateTime     `xml:"booking_date"`
	Source    string       `xml:"source"`
	HotelID   int          `xml:"hotel_id"`
	Arrival   shared.Date  `xml:"arrival"`
	Departure shared.Date  `xml:"departure"`
	Service   shared.Board `xml:"service"`
	Note      string       `xml:"note"`
	Hotel     Hotel        `xml:"hotel"`
	Guest     Guest        `xml:"guest"`
}

type Insurance

type Insurance struct {
	Type     InsuranceType `xml:"insurance_type"`
	URL      string        `xml:"insurance_url"`
	AgencyNr string        `xml:"agency_nr"`
}

type InsuranceType added in v0.0.44

type InsuranceType int
const (
	InsuranceTypeHGV InsuranceType = iota + 1
	InsuranceTypeHogast
)

type Ints added in v0.0.19

type Ints []int

func (*Ints) UnmarshalXML added in v0.0.19

func (input *Ints) UnmarshalXML(decoder *xml.Decoder, start xml.StartElement) error

Decode from a comma-separated list of ints

type LimitPerSeconds added in v0.0.52

type LimitPerSeconds struct {
	Requests int
	Duration time.Duration
}

func (*LimitPerSeconds) UnmarshalXML added in v0.0.52

func (input *LimitPerSeconds) UnmarshalXML(decoder *xml.Decoder, start xml.StartElement) error

type Location

type Location struct {
	ID         int                 `xml:"id"`
	RootID     int                 `xml:"root_id"`
	ParentID   int                 `xml:"parent_id"`
	VirtualIDs Ints                `xml:"virtual_id"`
	Type       shared.LocationType `xml:"typ"`
	Visible    Visibility          `xml:"visible"`
	Latitude   float64             `xml:"latitude"`
	Longitude  float64             `xml:"longitude"`
	NameDeu    string              `xml:"name_deu"`
	NameIta    string              `xml:"name_ita"`
	NameSpa    string              `xml:"name_spa"`
	NameFra    string              `xml:"name_fra"`
	NameRus    string              `xml:"name_rus"`
	NameDan    string              `xml:"name_dan"`
	NameEng    string              `xml:"name_eng"`
}

type LocationName

type LocationName struct {
	City      string `xml:"name_city"`
	Community string `xml:"name_community"`
	Region    string `xml:"name_region"`
	Area      string `xml:"name_area"`
}

type Matching

type Matching struct {
	IDBok int `xml:"id_bok"`
	IDExp int `xml:"id_exp"`
	IDHtl int `xml:"id_htl"`
	IDHrs int `xml:"id_hrs"`
}

type NormalizedHTMLString added in v0.0.17

type NormalizedHTMLString string

func (*NormalizedHTMLString) UnmarshalXML added in v0.0.17

func (input *NormalizedHTMLString) UnmarshalXML(decoder *xml.Decoder, start xml.StartElement) error

type Occupancy

type Occupancy struct {
	Min int `xml:"min"`
	Max int `xml:"max"`
	Std int `xml:"std"`
	Mfp int `xml:"mfp"`
}

type Offer

type Offer struct {
	ID               int                  `xml:"offer_id"`
	GID              int                  `xml:"offer_gid"`
	BaseID           int                  `xml:"offer_base_id"`
	Type             shared.OfferType     `xml:"offer_typ"`
	OfferTitle       string               `xml:"offer_title"`
	Title            string               `xml:"title"`
	OfferDescription string               `xml:"offer_description"`
	Description      NormalizedHTMLString `xml:"description"`
	Pictures         []Picture            `xml:"pictures>picture"`
	Themes           []Theme              `xml:"themes>theme"`
}

type Paging

type Paging struct {
	Count int `xml:"count"`
	Total int `xml:"total"`
}

type Payment

type Payment struct {
	Method     shared.PaymentMethod `xml:"method"`
	Price      float64              `xml:"price"`
	Prepayment float64              `xml:"prepayment"`
	Invoice    bool                 `xml:"invoice"`
	Bank       Bank                 `xml:"bank"`
}

type PaymentMethods added in v0.0.16

type PaymentMethods int
const (
	PaymentMethodsCreditCard PaymentMethods = 8 << iota
	PaymentMethodsATM        PaymentMethods = 32 << iota
	PaymentMethodsMastercard
	PaymentMethodsVisa
	PaymentMethodsDinersClub
	PaymentMethodsAmericanExpress
)

type PaymentTerm

type PaymentTerm struct {
	ID          int                  `xml:"id"`
	OwnerID     int                  `xml:"owner_id"`
	Methods     shared.PaymentMethod `xml:"methods"`
	CCards      int                  `xml:"ccards"`
	Prepayment  int                  `xml:"prepayment"`
	Priority    int                  `xml:"priority"`
	Bank        Bank                 `xml:"bank"`
	Description string               `xml:"description"`
	Insurance   Insurance            `xml:"insurance"`
}

type Penalty

type Penalty struct {
	Percent     int      `xml:"percent"`
	Datefrom    DateTime `xml:"datefrom"`
	Daysarrival int      `xml:"daysarrival"`
}

type Picture

type Picture struct {
	URL       string `xml:"url"`
	Time      int    `xml:"time"`
	Title     string `xml:"title"`
	Copyright string `xml:"copyright"`
	Width     int    `xml:"width"`
	Height    int    `xml:"height"`
}

type Price

type Price struct {
	ID               int                  `xml:"price_id"`
	Type             shared.OfferType     `xml:"price_typ"`
	Title            string               `xml:"title"`
	PriceTitle       string               `xml:"price_title"`
	Description      NormalizedHTMLString `xml:"description"`
	PriceDescription string               `xml:"price_description"`
	Supplement       Supplement           `xml:"supplement"`
	PriceSupplement  int                  `xml:"price_supplement"`
	PriceWS          float64              `xml:"price_ws"`
	PriceBB          float64              `xml:"price_bb"`
	PriceHB          float64              `xml:"price_hb"`
	PriceFB          float64              `xml:"price_fb"`
	PriceAI          float64              `xml:"price_ai"`
	PriceAmount      float64              `xml:"price_amount"`
	PriceValue       float64              `xml:"price_value"`
	PriceTotal       float64              `xml:"price_total"`
	Unit             PriceUnit            `xml:"unit"`
	Pictures         []Picture            `xml:"pictures>picture"`
}

type PriceEngine added in v0.0.60

type PriceEngine int
const (
	PriceEngineEasiSuite PriceEngine = iota
	PriceEngineLTS
	PriceEngineDisabled
)

type PriceList

type PriceList struct {
	OfferID        int                `xml:"offer_id"`
	OfferType      shared.OfferType   `xml:"offer_typ"`
	OfferBaseID    int                `xml:"offer_base_id"`
	SpecialType    shared.SpecialType `xml:"special_typ"`
	PrlMode        int                `xml:"prl_mode"`
	PrlUnit        int                `xml:"prl_unit"`
	DaysArrival    Weekdays           `xml:"days_arrival"`
	DaysDeparture  Weekdays           `xml:"days_departure"`
	DaysDurMin     int                `xml:"days_dur_min"`
	DaysDurMax     int                `xml:"days_dur_max"`
	DaysArrivalMin int                `xml:"days_arrival_min"`
	DaysArrivalMax int                `xml:"days_arrival_max"`
	ChildrenMin    int                `xml:"children_min"`
	ChildrenMax    int                `xml:"children_max"`
	AdultsMin      int                `xml:"adults_min"`
	AdultsMax      int                `xml:"adults_max"`
	Title          string             `xml:"title"`
	Seasons        []Season           `xml:"season"`
}

type PriceUnit added in v0.0.60

type PriceUnit int
const (
	PriceUnitEuro PriceUnit = iota
	PriceUnitPercent
)

type Properties

type Properties struct {
	Area        int `xml:"area"`
	BedRooms    int `xml:"bed_rooms"`
	LivingRooms int `xml:"living_rooms"`
	DiningRooms int `xml:"dining_rooms"`
	BathRooms   int `xml:"bath_rooms"`
	WCRooms     int `xml:"wc_rooms"`
	Min         int `xml:"min"`
	Max         int `xml:"max"`
	Std         int `xml:"std"`
	Mfp         int `xml:"mfp"`
}

type RateLimit added in v0.0.52

type RateLimit struct {
	Limit     LimitPerSeconds `xml:"limit"`
	Remaining int             `xml:"remaining"`
	Reset     Duration        `xml:"reset"`
}

type Rating

type Rating struct {
	ID       string         `xml:"id"`
	Provider RatingProvider `xml:"provider"`
	Value    float64        `xml:"value"`
	Count    int            `xml:"count"`
	Date     shared.Date    `xml:"date"`
}

type RatingProvider added in v0.0.76

type RatingProvider string
const (
	RatingProviderTrustYou       RatingProvider = "trustyou"
	RatingProviderHotelnavigator RatingProvider = "hotelnavigator"
)

type Restriction

type Restriction struct {
	ObjID      int          `xml:"obj_id"`
	Service    shared.Board `xml:"service"`
	Arrival    bool         `xml:"arrival"`
	Departure  bool         `xml:"departure"`
	Min        int          `xml:"min"`
	MinArrival int          `xml:"min_arrival"`
	Max        int          `xml:"max"`
	MaxArrival int          `xml:"max_arrival"`
	Close      bool         `xml:"close"`
}

type RestrictionDescription added in v0.0.81

type RestrictionDescription struct {
	ObjID          int  `xml:"obj_id"`
	ObjSubID       int  `xml:"obj_sub_id"`
	ObjSubOnly     int  `xml:"obj_sub_only"`
	ChildrenMin    int  `xml:"children_min"`
	ChildrenMax    int  `xml:"children_max"`
	DaysArrivalMin int  `xml:"days_arrival_min"`
	DaysArrivalMax int  `xml:"days_arrival_max"`
	PersAgeMin     int  `xml:"pers_age_min"`
	Holes          bool `xml:"holes"`
}

type Result

type Result struct {
	Hotels    []Hotel         `xml:"hotel"`
	Specials  []Special       `xml:"special"`
	Tracking  Tracking        `xml:"tracking"`
	Sources   []Source        `xml:"source"`
	Locations []Location      `xml:"location"`
	Themes    []ThemeListItem `xml:"theme"`
	Inquiry   Inquiry         `xml:"inquiry"`
	Booking   Booking         `xml:"booking"`
	Form      Form            `xml:"form"`
	Coupon    Coupon          `xml:"coupon"`
}

type Room

type Room struct {
	ID              int             `xml:"room_id"`
	LTSID           string          `xml:"room_lts_id"`
	OfferID         int             `xml:"offer_id"`
	Service         shared.Board    `xml:"service"`
	Type            shared.RoomType `xml:"room_type"`
	Code            string          `xml:"room_code"`
	RoomTitle       string          `xml:"room_title"`
	RoomDescription string          `xml:"room_description"`
	Title           string          `xml:"title"`
	// Description can contain \n characters.
	Description  string       `xml:"description"`
	Persons      Ints         `xml:"room_persons"`
	Free         int          `xml:"room_free"`
	Features     int          `xml:"features"`
	FeaturesView []Feature    `xml:"features_view>feature"`
	RoomTotal    float64      `xml:"room_total"`
	Pictures     []Picture    `xml:"pictures>picture"`
	Prices       []Price      `xml:"room_price"`
	CancelPolicy CancelPolicy `xml:"cancel_policy"`
	PaymentTerm  PaymentTerm  `xml:"payment_term"`
	Properties   Properties   `xml:"properties"`
	Occupancy    Occupancy    `xml:"occupancy"`
	Numbers      []string     `xml:"room_numbers>number"`
	Details      []RoomDetail `xml:"room_details>room_detail"`
	Days         []Day        `xml:"days>day"`
	PriceFrom    int          `xml:"price_from"`
	PriceList    []PriceList  `xml:"pricelist"`
}

type RoomDetail

type RoomDetail struct {
	Number       string         `xml:"number"`
	Availability Availabilities `xml:"availability"`
}

type RoomPrice

type RoomPrice struct {
	RoomID         int     `xml:"room_id"`
	RoomSeq        int     `xml:"room_seq"`
	OfferID        int     `xml:"offer_id"`
	PriceDetails   []Price `xml:"price_details>price"`
	PriceTotal     Price   `xml:"price_total"`
	PriceInclusive Price   `xml:"price_inclusive"`
	CancelPolicyID int     `xml:"cancel_policy_id"`
	PaymentTermID  int     `xml:"payment_term_id"`
}

type Root

type Root struct {
	XMLName xml.Name `xml:"root"`
	Header  Header   `xml:"header"`
	Result  Result   `xml:"result"`
}

type Season

type Season struct {
	DateStart shared.Date `xml:"date_start"`
	DateEnd   shared.Date `xml:"date_end"`
	Price     Price       `xml:"price"`
}

type Source

type Source struct {
	ID     int    `xml:"src_id"`
	Name   string `xml:"sourcename"`
	Logkey string `xml:"logkey"`
	De     string `xml:"de"`
	En     string `xml:"en"`
	It     string `xml:"it"`
}

type SourceData

type SourceData struct {
	Description string `xml:"description"`
	Headline    string `xml:"headline"`
	URL         string `xml:"url"`
}

type Special

type Special struct {
	OfferID        int                   `xml:"offer_id"`
	Status         int                   `xml:"status"`
	Valid          bool                  `xml:"valid"`
	OfferType      shared.OfferType      `xml:"offer_typ"`
	Type           shared.SpecialType    `xml:"special_typ"`
	Premium        shared.SpecialPremium `xml:"special_premium"`
	DaysArrival    Weekdays              `xml:"days_arrival"`
	DaysDeparture  Weekdays              `xml:"days_departure"`
	DaysDurMin     int                   `xml:"days_dur_min"`
	DaysDurMax     int                   `xml:"days_dur_max"`
	DaysArrivalMin int                   `xml:"days_arrival_min"`
	DaysArrivalMax int                   `xml:"days_arrival_max"`
	ChildrenMin    int                   `xml:"children_min"`
	ChildrenMax    int                   `xml:"children_max"`
	AdultsMin      int                   `xml:"adults_min"`
	AdultsMax      int                   `xml:"adults_max"`
	PersAgeMin     int                   `xml:"pers_age_min"`
	ChildAgeMin    int                   `xml:"child_age_min"`
	ChildAgeMax    int                   `xml:"child_age_max"`
	AdultAgeMin    int                   `xml:"adult_age_min"`
	ValidStart     shared.Date           `xml:"valid_start"`
	ValidEnd       shared.Date           `xml:"valid_end"`
	Title          string                `xml:"title"`
	Description    NormalizedHTMLString  `xml:"description"`
	Hotels         []Hotel               `xml:"hotels>hotel"`
	Seasons        []Season              `xml:"seasons>season"`
	Services       []shared.Board        `xml:"services>service"`
	Inclusives     []Price               `xml:"inclusive>price"`
	Pictures       []Picture             `xml:"pictures>picture"`
	Themes         []Theme               `xml:"themes>theme"`
}

type Supplement added in v0.0.60

type Supplement int
const (
	SupplementRoomPrice Supplement = iota
	SupplementSurchargesOrDiscounts
	SupplementIncludedServices
)

type Theme

type Theme struct {
	ID    shared.ThemeID `xml:"id"`
	Title string         `xml:"title"`
}

type ThemeListItem

type ThemeListItem struct {
	ID         int    `xml:"id"`
	FilterID   int    `xml:"filter_id"`
	VirtualIDs Ints   `xml:"virtual_id"`
	Sequence   int    `xml:"sequence"`
	TitleDeu   string `xml:"title_deu"`
	TitleIta   string `xml:"title_ita"`
	TitleEng   string `xml:"title_eng"`
	TitleSpa   string `xml:"title_spa"`
	TitleFra   string `xml:"title_fra"`
	TitleRus   string `xml:"title_rus"`
	TitleDan   string `xml:"title_dan"`
}

type Time added in v0.0.31

type Time struct {
	time.Time
	// Valid is true if Time (which can also be Time.isZero() == 0) is present
	Valid bool
}

func (*Time) UnmarshalXML added in v0.0.31

func (t *Time) UnmarshalXML(decoder *xml.Decoder, start xml.StartElement) error

type Tracking

type Tracking struct {
	Pixel string `xml:"pixel"`
}

type Visibility added in v0.0.59

type Visibility int
const (
	VisibilityHidden   Visibility = 0
	VisibilityVisible1 Visibility = 1
	VisibilityVisible3 Visibility = 3
)

The difference between VisibilityVisible1 and VisibilityVisible3 is unclear.

type Weekdays added in v0.0.43

type Weekdays int
const (
	WeekdayMonday Weekdays = 1 << iota
	WeekdayTuesday
	WeekdayWednesday
	WeekdayThursday
	WeekdayFriday
	WeekdaySaturday
	WeekdaySunday
)

Jump to

Keyboard shortcuts

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