search_google_hotels_property
Search and retrieve detailed hotel property information from Google, including pricing, availability, and booking details based on specified dates, location, and guest preferences.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
adults | No | 成人数量 | |
check_in_date | Yes | 入住日期 | |
check_out_date | Yes | 退房日期 | |
children | No | 儿童数量 | |
children_ages | No | 儿童年龄 | |
currency | No | 货币 | |
gl | No | 地理位置 | |
hl | No | 语言 | |
property_token | Yes | 物业令牌 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"adults": {
"description": "成人数量",
"type": "string"
},
"check_in_date": {
"description": "入住日期",
"type": "string"
},
"check_out_date": {
"description": "退房日期",
"type": "string"
},
"children": {
"description": "儿童数量",
"type": "string"
},
"children_ages": {
"description": "儿童年龄",
"type": "string"
},
"currency": {
"description": "货币",
"type": "string"
},
"gl": {
"description": "地理位置",
"type": "string"
},
"hl": {
"description": "语言",
"type": "string"
},
"property_token": {
"description": "物业令牌",
"type": "string"
}
},
"required": [
"property_token",
"check_in_date",
"check_out_date"
],
"type": "object"
}