-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efeebfd
commit 5208291
Showing
165 changed files
with
3,207 additions
and
414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.5.0 | ||
7.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# BulkRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**endpoint** | **str** | | [optional] | ||
**query** | [**SearchStructuredQuery**](SearchStructuredQuery.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from stadiamaps.models.bulk_request import BulkRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BulkRequest from a JSON string | ||
bulk_request_instance = BulkRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(BulkRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
bulk_request_dict = bulk_request_instance.to_dict() | ||
# create an instance of BulkRequest from a dict | ||
bulk_request_from_dict = BulkRequest.from_dict(bulk_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# BulkSearchRequestInner | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**endpoint** | **str** | | [optional] | ||
**query** | [**SearchStructuredQuery**](SearchStructuredQuery.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from stadiamaps.models.bulk_search_request_inner import BulkSearchRequestInner | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BulkSearchRequestInner from a JSON string | ||
bulk_search_request_inner_instance = BulkSearchRequestInner.from_json(json) | ||
# print the JSON string representation of the object | ||
print(BulkSearchRequestInner.to_json()) | ||
|
||
# convert the object into a dict | ||
bulk_search_request_inner_dict = bulk_search_request_inner_instance.to_dict() | ||
# create an instance of BulkSearchRequestInner from a dict | ||
bulk_search_request_inner_from_dict = BulkSearchRequestInner.from_dict(bulk_search_request_inner_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# BulkSearchResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**status** | **int** | | | ||
**response** | [**PeliasResponse**](PeliasResponse.md) | | [optional] | ||
**msg** | **str** | An error message describing what went wrong (if the status is not 200). | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from stadiamaps.models.bulk_search_response import BulkSearchResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BulkSearchResponse from a JSON string | ||
bulk_search_response_instance = BulkSearchResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(BulkSearchResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
bulk_search_response_dict = bulk_search_response_instance.to_dict() | ||
# create an instance of BulkSearchResponse from a dict | ||
bulk_search_response_from_dict = BulkSearchResponse.from_dict(bulk_search_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.