-
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.
Update dependencies and fix method calls in documentation
- Loading branch information
1 parent
6188491
commit 48fba64
Showing
101 changed files
with
6,309 additions
and
243 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.3.0 | ||
7.4.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# BackgroundJobRequestStatus | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**identifier** | **str** | | [optional] [readonly] | ||
**status** | [**RequestStatusCode**](RequestStatusCode.md) | | [optional] | ||
**links** | [**List[Link]**](Link.md) | | [optional] [readonly] | ||
|
||
## Example | ||
|
||
```python | ||
from openapi_client.models.background_job_request_status import BackgroundJobRequestStatus | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BackgroundJobRequestStatus from a JSON string | ||
background_job_request_status_instance = BackgroundJobRequestStatus.from_json(json) | ||
# print the JSON string representation of the object | ||
print(BackgroundJobRequestStatus.to_json()) | ||
|
||
# convert the object into a dict | ||
background_job_request_status_dict = background_job_request_status_instance.to_dict() | ||
# create an instance of BackgroundJobRequestStatus from a dict | ||
background_job_request_status_form_dict = background_job_request_status.from_dict(background_job_request_status_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,34 @@ | ||
# CatalogPublicationRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**url** | **str** | | | ||
**catalog_id** | **str** | | [optional] | ||
**additional_links** | [**List[Link]**](Link.md) | | [optional] | ||
**subjects** | [**List[Subject]**](Subject.md) | | [optional] | ||
**collection** | **str** | | [optional] | ||
**depth** | **int** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from openapi_client.models.catalog_publication_request import CatalogPublicationRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CatalogPublicationRequest from a JSON string | ||
catalog_publication_request_instance = CatalogPublicationRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CatalogPublicationRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
catalog_publication_request_dict = catalog_publication_request_instance.to_dict() | ||
# create an instance of CatalogPublicationRequest from a dict | ||
catalog_publication_request_form_dict = catalog_publication_request.from_dict(catalog_publication_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
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,36 @@ | ||
# ContentDisposition | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**disposition_type** | **str** | | [optional] | ||
**parameters** | **List[object]** | | [optional] [readonly] | ||
**file_name** | **str** | | [optional] | ||
**creation_date** | **datetime** | | [optional] | ||
**modification_date** | **datetime** | | [optional] | ||
**inline** | **bool** | | [optional] | ||
**read_date** | **datetime** | | [optional] | ||
**size** | **int** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from openapi_client.models.content_disposition import ContentDisposition | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ContentDisposition from a JSON string | ||
content_disposition_instance = ContentDisposition.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ContentDisposition.to_json()) | ||
|
||
# convert the object into a dict | ||
content_disposition_dict = content_disposition_instance.to_dict() | ||
# create an instance of ContentDisposition from a dict | ||
content_disposition_form_dict = content_disposition.from_dict(content_disposition_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,33 @@ | ||
# ContentType | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**boundary** | **str** | | [optional] | ||
**char_set** | **str** | | [optional] | ||
**media_type** | **str** | | [optional] | ||
**name** | **str** | | [optional] | ||
**parameters** | **List[object]** | | [optional] [readonly] | ||
|
||
## Example | ||
|
||
```python | ||
from openapi_client.models.content_type import ContentType | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ContentType from a JSON string | ||
content_type_instance = ContentType.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ContentType.to_json()) | ||
|
||
# convert the object into a dict | ||
content_type_dict = content_type_instance.to_dict() | ||
# create an instance of ContentType from a dict | ||
content_type_form_dict = content_type.from_dict(content_type_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# GetCatalogueById401Response | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**type** | **str** | | [optional] | ||
**title** | **str** | | [optional] | ||
**status** | **int** | | [optional] | ||
**detail** | **str** | | [optional] | ||
**instance** | **str** | | [optional] | ||
**errors** | **Dict[str, List[str]]** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from openapi_client.models.get_catalogue_by_id401_response import GetCatalogueById401Response | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of GetCatalogueById401Response from a JSON string | ||
get_catalogue_by_id401_response_instance = GetCatalogueById401Response.from_json(json) | ||
# print the JSON string representation of the object | ||
print(GetCatalogueById401Response.to_json()) | ||
|
||
# convert the object into a dict | ||
get_catalogue_by_id401_response_dict = get_catalogue_by_id401_response_instance.to_dict() | ||
# create an instance of GetCatalogueById401Response from a dict | ||
get_catalogue_by_id401_response_form_dict = get_catalogue_by_id401_response.from_dict(get_catalogue_by_id401_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) | ||
|
||
|
Oops, something went wrong.