An open API service indexing awesome lists of open source software.

https://github.com/unic/discoverswiss.infocenter


https://github.com/unic/discoverswiss.infocenter

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# SwaggerClient-php
Infocenter API

This PHP package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 20250801.3_release
- Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen

## Requirements

PHP 5.5 and later

## Installation & Usage
### Composer

To install the bindings via [Composer](http://getcomposer.org/), add the following to `composer.json`:

```
{
"repositories": [
{
"type": "git",
"url": "https://github.com/unic/discoverswiss.infocenter.git"
}
],
"require": {
"unic/discoverswiss.infocenter": "*@dev"
}
}
```

Then run `composer install`

### Manual Installation

Download the files and include `autoload.php`:

```php
require_once('/path/to/SwaggerClient-php/vendor/autoload.php');
```

## Tests

To run the unit tests:

```
composer install
./vendor/bin/phpunit
```

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```php
accommodation($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $project, $select, $include_all_photos);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->accommodation: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Region to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.

try {
$result = $apiInstance->administrativeAreaRegion($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_contained_in_place_filter, $project, $contained_in_place, $select);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->administrativeAreaRegion: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of AdministrativeArea to get the weather daily forecast information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Sets for how many days the daily forecast responses are returned. Available values are:
`1` - Return forecast data for the next day. Returned by default.
`5` - Return forecast data for the next 5 days.
`10` - Return forecast data for the next 10 days.

try {
$result = $apiInstance->administrativeAreaRegionDailyForecast($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->administrativeAreaRegionDailyForecast: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of AdministrativeArea to get the weather hourly forecast information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Time frame of the returned weather forecast. By default, the forecast data for next hour will be returned.Available values are:
`1` - Return forecast data for the next hour. Default value.
`12` - Return hourly forecast for next 12 hours.
`24` - Return hourly forecast for next 24 hours.
`72` - Return hourly forecast for next 72 hours (3 days).

try {
$result = $apiInstance->administrativeAreaRegionHourlyForecast($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->administrativeAreaRegionHourlyForecast: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of AdministrativeArea to get the weather information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Time frame of the returned weather conditions. By default, the most current weather conditions will be returned. Available values are:
`0` - Return the most current weather conditions. Default value.
`6` - Return weather conditions from past 6 hours.
`24` - Return weather conditions from past 24 hours.
$details = true; // bool | Returns full details for the current conditions, `false` by default.

try {
$result = $apiInstance->administrativeAreaRegionWeather($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration, $details);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->administrativeAreaRegionWeather: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Amenity to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.

try {
$result = $apiInstance->amenity($id, $ocp_apim_subscription_key, $accept_language);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->amenity: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of AudioObject to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.

try {
$result = $apiInstance->audioObject($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $project, $contained_in_place, $select);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->audioObject: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Award to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.

try {
$result = $apiInstance->award($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $project, $select);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->award: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Category to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$category_version = "category_version_example"; // string | Filters categories by version.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.

try {
$result = $apiInstance->category($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $category_version, $project, $contained_in_place, $select);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->category: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Category to set root category.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$category_version = "category_version_example"; // string | Filters categories by version.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.

try {
$result = $apiInstance->categoryTree($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $category_version, $select);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->categoryTree: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of CivicStructure to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.

try {
$result = $apiInstance->civicStructure($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $project, $contained_in_place, $select, $include_all_photos);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->civicStructure: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of CivicStructure to get the weather daily forecast information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Sets for how many days the daily forecast responses are returned. Available values are:
`1` - Return forecast data for the next day. Returned by default.
`5` - Return forecast data for the next 5 days.
`10` - Return forecast data for the next 10 days.

try {
$result = $apiInstance->civicStructureDailyForecast($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->civicStructureDailyForecast: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of CivicStructure to get the weather hourly forecast information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Time frame of the returned weather forecast. By default, the forecast data for next hour will be returned.Available values are:
`1` - Return forecast data for the next hour. Default value.
`12` - Return hourly forecast for next 12 hours.
`24` - Return hourly forecast for next 24 hours.
`72` - Return hourly forecast for next 72 hours (3 days).

try {
$result = $apiInstance->civicStructureHourlyForecast($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->civicStructureHourlyForecast: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of CivicStructure to get the weather information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Time frame of the returned weather conditions. By default, the most current weather conditions will be returned. Available values are:
`0` - Return the most current weather conditions. Default value.
`6` - Return weather conditions from past 6 hours.
`24` - Return weather conditions from past 24 hours.
$details = true; // bool | Returns full details for the current conditions, `false` by default.

try {
$result = $apiInstance->civicStructureWeather($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration, $details);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->civicStructureWeather: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Condition to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.

try {
$result = $apiInstance->condition($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $project, $contained_in_place, $select, $include_all_photos);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->condition: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Condition to get the weather daily forecast information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Sets for how many days the daily forecast responses are returned. Available values are:
`1` - Return forecast data for the next day. Returned by default.
`5` - Return forecast data for the next 5 days.
`10` - Return forecast data for the next 10 days.

try {
$result = $apiInstance->conditionDailyForecast($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->conditionDailyForecast: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Condition to get the weather hourly forecast information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Time frame of the returned weather forecast. By default, the forecast data for next hour will be returned.Available values are:
`1` - Return forecast data for the next hour. Default value.
`12` - Return hourly forecast for next 12 hours.
`24` - Return hourly forecast for next 24 hours.
`72` - Return hourly forecast for next 72 hours (3 days).

try {
$result = $apiInstance->conditionHourlyForecast($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->conditionHourlyForecast: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Condition to get the weather information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Time frame of the returned weather conditions. By default, the most current weather conditions will be returned. Available values are:
`0` - Return the most current weather conditions. Default value.
`6` - Return weather conditions from past 6 hours.
`24` - Return weather conditions from past 24 hours.
$details = true; // bool | Returns full details for the current conditions, `false` by default.

try {
$result = $apiInstance->conditionWeather($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration, $details);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->conditionWeather: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of CreativeWork to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.

try {
$result = $apiInstance->creativeWork($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $project, $contained_in_place, $select);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->creativeWork: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$term_code = "term_code_example"; // string | Use property code of a term to get the current term version.
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.

try {
$result = $apiInstance->currentTermVersion($ocp_apim_subscription_key, $term_code, $accept_language, $accept_timezone);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->currentTermVersion: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Event to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.

try {
$result = $apiInstance->event($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $project, $contained_in_place, $select, $include_all_photos);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->event: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Event to get the weather daily forecast information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Sets for how many days the daily forecast responses are returned. Available values are:
`1` - Return forecast data for the next day. Returned by default.
`5` - Return forecast data for the next 5 days.
`10` - Return forecast data for the next 10 days.

try {
$result = $apiInstance->eventDailyForecast($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->eventDailyForecast: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Event to get the weather hourly forecast information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Time frame of the returned weather forecast. By default, the forecast data for next hour will be returned.Available values are:
`1` - Return forecast data for the next hour. Default value.
`12` - Return hourly forecast for next 12 hours.
`24` - Return hourly forecast for next 24 hours.
`72` - Return hourly forecast for next 72 hours (3 days).

try {
$result = $apiInstance->eventHourlyForecast($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->eventHourlyForecast: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of Event to get the weather information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Time frame of the returned weather conditions. By default, the most current weather conditions will be returned. Available values are:
`0` - Return the most current weather conditions. Default value.
`6` - Return weather conditions from past 6 hours.
`24` - Return weather conditions from past 24 hours.
$details = true; // bool | Returns full details for the current conditions, `false` by default.

try {
$result = $apiInstance->eventWeather($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration, $details);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->eventWeather: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of FoodEstablishment to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.

try {
$result = $apiInstance->foodEstablishment($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $project, $contained_in_place, $select, $include_all_photos);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->foodEstablishment: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of FoodEstablishment to get the weather information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Time frame of the returned weather conditions. By default, the most current weather conditions will be returned. Available values are:
`0` - Return the most current weather conditions. Default value.
`6` - Return weather conditions from past 6 hours.
`24` - Return weather conditions from past 24 hours.
$details = true; // bool | Returns full details for the current conditions, `false` by default.

try {
$result = $apiInstance->foodEstablishmentWeather($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration, $details);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->foodEstablishmentWeather: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of FoodEstablishment to get the weather daily forecast information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Sets for how many days the daily forecast responses are returned. Available values are:
`1` - Return forecast data for the next day. Returned by default.
`5` - Return forecast data for the next 5 days.
`10` - Return forecast data for the next 10 days.

try {
$result = $apiInstance->foodEstablishmentWeatherDailyForecast($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->foodEstablishmentWeatherDailyForecast: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of FoodEstablishment to get the weather hourly forecast information for it.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$duration = 56; // int | Time frame of the returned weather forecast. By default, the forecast data for next hour will be returned.Available values are:
`1` - Return forecast data for the next hour. Default value.
`12` - Return hourly forecast for next 12 hours.
`24` - Return hourly forecast for next 24 hours.
`72` - Return hourly forecast for next 72 hours (3 days).

try {
$result = $apiInstance->foodEstablishmentWeatherHourlyForecast($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $project, $contained_in_place, $duration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->foodEstablishmentWeatherHourlyForecast: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].

try {
$apiInstance->getStatus($ocp_apim_subscription_key);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->getStatus: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].

try {
$result = $apiInstance->getStatusAbout($ocp_apim_subscription_key);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->getStatusAbout: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$partner_acronym = "partner_acronym_example"; // string | Use partner acronym to set the partner which should be used in the request.
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).

try {
$result = $apiInstance->getTheCurrentTermVersionsOfThePartner($ocp_apim_subscription_key, $partner_acronym, $accept_language, $accept_timezone, $scope);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->getTheCurrentTermVersionsOfThePartner: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$id = "id_example"; // string | Use property identifier of ImageObject to get single object.
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.

try {
$result = $apiInstance->imageObject($id, $ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $project, $contained_in_place, $select);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->imageObject: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$additional_type = "additional_type_example"; // string | Filters by `additional type`.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$usage = "usage_example"; // string |
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.

try {
$result = $apiInstance->listAccommodation($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $project, $select, $updated_since, $datasource, $continuation_token, $top, $additional_type, $include_count, $usage, $identifiers, $include_all_photos);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listAccommodation: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$category = "category_example"; // string | Filters by `category`. Use property identifier of category.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$admin_areas_only = "admin_areas_only_example"; // string | set to true only administrative areas are included. Set to false then all types of areas are included. This kind can destroy the tree structure and combined with high levels the performance can be bad. default = false (works only in combination with rootObjectsOnly).
$root_objects_only = true; // bool | Pass 'true' if you want to get only root areas.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.

try {
$result = $apiInstance->listAdministrativeAreaRegion($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_contained_in_place_filter, $category, $contained_in_place, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $admin_areas_only, $root_objects_only, $identifiers);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listAdministrativeAreaRegion: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$additional_type = "additional_type_example"; // string | Filters by `additional type`.
$place_features = true; // bool | Filter by place features.
$lodging_business_features = true; // bool | Filter by lodging business features.
$accommodation_features = true; // bool | Filter by accommodation features.

try {
$result = $apiInstance->listAmenities($ocp_apim_subscription_key, $accept_language, $additional_type, $place_features, $lodging_business_features, $accommodation_features);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listAmenities: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.

try {
$result = $apiInstance->listAudioObject($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $identifiers);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listAudioObject: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$additional_type = "additional_type_example"; // string | Filters by `additional type`.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$usage = "usage_example"; // string |
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.

try {
$result = $apiInstance->listAward($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $project, $select, $updated_since, $datasource, $continuation_token, $top, $additional_type, $include_count, $usage, $identifiers);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listAward: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$category_version = "category_version_example"; // string | Filters categories by version.
$parent_category = "parent_category_example"; // string | Use property identifier of category to filter.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$root_objects_only = true; // bool | Pass 'true' if you want to get only root categories.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.

try {
$result = $apiInstance->listCategory($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $category_version, $parent_category, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $root_objects_only, $identifiers);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listCategory: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$category = "category_example"; // string | Filters by `category`. Use property identifier of category.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.

try {
$result = $apiInstance->listCivicStructure($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $category, $contained_in_place, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $identifiers, $include_all_photos);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listCivicStructure: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$category = "category_example"; // string | Filters by `category`. Use property identifier of category.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.

try {
$result = $apiInstance->listCondition($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $category, $contained_in_place, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $identifiers, $include_all_photos);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listCondition: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.

try {
$result = $apiInstance->listCreativeWork($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $identifiers);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listCreativeWork: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$category = "category_example"; // string | Filters by `category`. Use property identifier of category.
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$location = "location_example"; // string | Filters by `location`. Use property identifier of local bussiness.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.

try {
$result = $apiInstance->listEvents($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $updated_since, $category, $datasource, $continuation_token, $top, $contained_in_place, $location, $project, $select, $include_count, $identifiers, $include_all_photos);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listEvents: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$category = "category_example"; // string | Filters by `category`. Use property identifier of category.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.

try {
$result = $apiInstance->listFoodEstablishment($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $category, $contained_in_place, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $identifiers, $include_all_photos);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listFoodEstablishment: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.

try {
$result = $apiInstance->listImageObject($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $identifiers);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listImageObject: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$category = "category_example"; // string | Filters by `category`. Use property identifier of category.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.
$description_mode = "description_mode_example"; // string | Use `splitToAdditionalProperty` to extract additional information from description to additionalProperty, by default `full`.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.
$additional_type = "additional_type_example"; // string | Filters by `additional type`.
$parent_organization = "parent_organization_example"; // string |

try {
$result = $apiInstance->listLocalBusiness($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $category, $contained_in_place, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $identifiers, $description_mode, $include_all_photos, $additional_type, $parent_organization);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listLocalBusiness: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$ds_tag_filter = "ds_tag_filter_example"; // string | Filter tags in the response by `project` or `all`, by default `all`.
$ds_contained_in_place_filter = "ds_contained_in_place_filter_example"; // string | Filter containedInPlace in the response by `project` or `all`, by default `all`.
$ds_category_filter = "ds_category_filter_example"; // string | Filter categories in the response by `project`, `excludeRoot` or `all`, by default `all`. Filter by `excludeRoot` will filter out the root elements of the category tree.
$category_version = "category_version_example"; // string | Filters categories by version.
$category = "category_example"; // string | Filters by `category`. Use property identifier of category.
$contained_in_place = "contained_in_place_example"; // string | Filters by `containedInPlace`. Use property identifier of place.
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.
$description_mode = "description_mode_example"; // string | Use `splitToAdditionalProperty` to extract additional information from description to additionalProperty, by default `full`.
$include_all_photos = true; // bool | Use `true` to include all photos in the response, otherwise images with low confidence will be skipped.
$parent_organization = "parent_organization_example"; // string |

try {
$result = $apiInstance->listLodgingBusiness($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $ds_tag_filter, $ds_contained_in_place_filter, $ds_category_filter, $category_version, $category, $contained_in_place, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $identifiers, $description_mode, $include_all_photos, $parent_organization);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listLodgingBusiness: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[https://developer.discover.swiss].
$accept_language = "accept_language_example"; // string | Two-letter language code to get localized properties.
$accept_timezone = "accept_timezone_example"; // string | Time zone ID to apply its offset to dates and time.
$scope = "scope_example"; // string | Value scope. Some providers support different values for different client targets. Has an effect on some multilingual values (name, description, etc.).
$updated_since = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Returns only changed data since a specific date. Format: `yyyy-MM-ddTHH:mm:ss`
$datasource = "datasource_example"; // string | Filters by `datasource`.
$continuation_token = "continuation_token_example"; // string | A next page cursor for use in pagination, see [Documentation](https://docs.discover.swiss/dev/quickstarts/how-to-get-access/#continuationtoken).
$top = 56; // int | Sets the page size of response.
$project = "project_example"; // string | Use this property to filter objects by a specific project. All partners must provide their project code in this parameter.
$select = "select_example"; // string | Comma-separated list of properties to include in the response.
$include_count = true; // bool | Use `true` if you want to get total filtered items count in response.
$identifiers = "identifiers_example"; // string | Comma-separated list of Id's to include in the response.

try {
$result = $apiInstance->listMediaObject($ocp_apim_subscription_key, $accept_language, $accept_timezone, $scope, $updated_since, $datasource, $continuation_token, $top, $project, $select, $include_count, $identifiers);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listMediaObject: ', $e->getMessage(), PHP_EOL;
}

$apiInstance = new Infocenter\Client\Api\DefaultApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$ocp_apim_subscription_key = "ocp_apim_subscription_key_example"; // string | Subscription key to access the API. Get it on (Developer portal)[htt