1 | <?php |
||
14 | class TouristAttraction extends Place |
||
15 | { |
||
16 | /** |
||
17 | * A language someone may use with or at the item, service or place. Please |
||
18 | * use one of the language codes from the [IETF BCP 47 |
||
19 | * standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]] |
||
20 | * |
||
21 | * @param Language|Language[]|string|string[] $availableLanguage |
||
22 | * |
||
23 | * @return static |
||
24 | * |
||
25 | * @see http://schema.org/availableLanguage |
||
26 | */ |
||
27 | public function availableLanguage($availableLanguage) |
||
31 | |||
32 | /** |
||
33 | * Attraction suitable for type(s) of tourist. eg. Children, visitors from a |
||
34 | * particular country, etc. |
||
35 | * |
||
36 | * @param Audience|Audience[]|string|string[] $touristType |
||
37 | * |
||
38 | * @return static |
||
39 | * |
||
40 | * @see http://schema.org/touristType |
||
41 | */ |
||
42 | public function touristType($touristType) |
||
46 | |||
47 | } |
||
48 |