Skip to content

Latest commit

 

History

History
238 lines (129 loc) · 6.33 KB

File metadata and controls

238 lines (129 loc) · 6.33 KB

HotelAbout

Properties

Name Type Description Notes
Description Pointer to string Hotel description. [optional]
FullAddress Pointer to string Standardised full address of the hotel. [optional]
Domain Pointer to string Domain of the hotel's website. [optional]
Url Pointer to string URL of the hotel's website. [optional]
CheckInTime Pointer to string Listed check-in time as HH:MM (24-hour). [optional]
CheckOutTime Pointer to string Listed check-out time as HH:MM (24-hour). [optional]
Amenities Pointer to []string Available amenity labels offered by the hotel. [optional]
Extras Pointer to map[string]interface{} Additional descriptive detail such as sub-descriptions and amenity categories. [optional]

Methods

NewHotelAbout

func NewHotelAbout() *HotelAbout

NewHotelAbout instantiates a new HotelAbout object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewHotelAboutWithDefaults

func NewHotelAboutWithDefaults() *HotelAbout

NewHotelAboutWithDefaults instantiates a new HotelAbout object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetDescription

func (o *HotelAbout) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *HotelAbout) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetDescription

func (o *HotelAbout) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *HotelAbout) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetFullAddress

func (o *HotelAbout) GetFullAddress() string

GetFullAddress returns the FullAddress field if non-nil, zero value otherwise.

GetFullAddressOk

func (o *HotelAbout) GetFullAddressOk() (*string, bool)

GetFullAddressOk returns a tuple with the FullAddress field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetFullAddress

func (o *HotelAbout) SetFullAddress(v string)

SetFullAddress sets FullAddress field to given value.

HasFullAddress

func (o *HotelAbout) HasFullAddress() bool

HasFullAddress returns a boolean if a field has been set.

GetDomain

func (o *HotelAbout) GetDomain() string

GetDomain returns the Domain field if non-nil, zero value otherwise.

GetDomainOk

func (o *HotelAbout) GetDomainOk() (*string, bool)

GetDomainOk returns a tuple with the Domain field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetDomain

func (o *HotelAbout) SetDomain(v string)

SetDomain sets Domain field to given value.

HasDomain

func (o *HotelAbout) HasDomain() bool

HasDomain returns a boolean if a field has been set.

GetUrl

func (o *HotelAbout) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *HotelAbout) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetUrl

func (o *HotelAbout) SetUrl(v string)

SetUrl sets Url field to given value.

HasUrl

func (o *HotelAbout) HasUrl() bool

HasUrl returns a boolean if a field has been set.

GetCheckInTime

func (o *HotelAbout) GetCheckInTime() string

GetCheckInTime returns the CheckInTime field if non-nil, zero value otherwise.

GetCheckInTimeOk

func (o *HotelAbout) GetCheckInTimeOk() (*string, bool)

GetCheckInTimeOk returns a tuple with the CheckInTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetCheckInTime

func (o *HotelAbout) SetCheckInTime(v string)

SetCheckInTime sets CheckInTime field to given value.

HasCheckInTime

func (o *HotelAbout) HasCheckInTime() bool

HasCheckInTime returns a boolean if a field has been set.

GetCheckOutTime

func (o *HotelAbout) GetCheckOutTime() string

GetCheckOutTime returns the CheckOutTime field if non-nil, zero value otherwise.

GetCheckOutTimeOk

func (o *HotelAbout) GetCheckOutTimeOk() (*string, bool)

GetCheckOutTimeOk returns a tuple with the CheckOutTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetCheckOutTime

func (o *HotelAbout) SetCheckOutTime(v string)

SetCheckOutTime sets CheckOutTime field to given value.

HasCheckOutTime

func (o *HotelAbout) HasCheckOutTime() bool

HasCheckOutTime returns a boolean if a field has been set.

GetAmenities

func (o *HotelAbout) GetAmenities() []string

GetAmenities returns the Amenities field if non-nil, zero value otherwise.

GetAmenitiesOk

func (o *HotelAbout) GetAmenitiesOk() (*[]string, bool)

GetAmenitiesOk returns a tuple with the Amenities field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetAmenities

func (o *HotelAbout) SetAmenities(v []string)

SetAmenities sets Amenities field to given value.

HasAmenities

func (o *HotelAbout) HasAmenities() bool

HasAmenities returns a boolean if a field has been set.

GetExtras

func (o *HotelAbout) GetExtras() map[string]interface{}

GetExtras returns the Extras field if non-nil, zero value otherwise.

GetExtrasOk

func (o *HotelAbout) GetExtrasOk() (*map[string]interface{}, bool)

GetExtrasOk returns a tuple with the Extras field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetExtras

func (o *HotelAbout) SetExtras(v map[string]interface{})

SetExtras sets Extras field to given value.

HasExtras

func (o *HotelAbout) HasExtras() bool

HasExtras returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]