| 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] |
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
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
func (o *HotelAbout) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
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.
func (o *HotelAbout) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *HotelAbout) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *HotelAbout) GetFullAddress() string
GetFullAddress returns the FullAddress field if non-nil, zero value otherwise.
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.
func (o *HotelAbout) SetFullAddress(v string)
SetFullAddress sets FullAddress field to given value.
func (o *HotelAbout) HasFullAddress() bool
HasFullAddress returns a boolean if a field has been set.
func (o *HotelAbout) GetDomain() string
GetDomain returns the Domain field if non-nil, zero value otherwise.
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.
func (o *HotelAbout) SetDomain(v string)
SetDomain sets Domain field to given value.
func (o *HotelAbout) HasDomain() bool
HasDomain returns a boolean if a field has been set.
func (o *HotelAbout) GetUrl() string
GetUrl returns the Url field if non-nil, zero value otherwise.
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.
func (o *HotelAbout) SetUrl(v string)
SetUrl sets Url field to given value.
func (o *HotelAbout) HasUrl() bool
HasUrl returns a boolean if a field has been set.
func (o *HotelAbout) GetCheckInTime() string
GetCheckInTime returns the CheckInTime field if non-nil, zero value otherwise.
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.
func (o *HotelAbout) SetCheckInTime(v string)
SetCheckInTime sets CheckInTime field to given value.
func (o *HotelAbout) HasCheckInTime() bool
HasCheckInTime returns a boolean if a field has been set.
func (o *HotelAbout) GetCheckOutTime() string
GetCheckOutTime returns the CheckOutTime field if non-nil, zero value otherwise.
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.
func (o *HotelAbout) SetCheckOutTime(v string)
SetCheckOutTime sets CheckOutTime field to given value.
func (o *HotelAbout) HasCheckOutTime() bool
HasCheckOutTime returns a boolean if a field has been set.
func (o *HotelAbout) GetAmenities() []string
GetAmenities returns the Amenities field if non-nil, zero value otherwise.
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.
func (o *HotelAbout) SetAmenities(v []string)
SetAmenities sets Amenities field to given value.
func (o *HotelAbout) HasAmenities() bool
HasAmenities returns a boolean if a field has been set.
func (o *HotelAbout) GetExtras() map[string]interface{}
GetExtras returns the Extras field if non-nil, zero value otherwise.
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.
func (o *HotelAbout) SetExtras(v map[string]interface{})
SetExtras sets Extras field to given value.
func (o *HotelAbout) HasExtras() bool
HasExtras returns a boolean if a field has been set.