Skip to content

Commit

Permalink
API-Update: Add TicketAPI endpoints
Browse files Browse the repository at this point in the history
nightly API update (#223)

Co-authored-by: Philipp Fruck <[email protected]>
  • Loading branch information
github-actions[bot] and p-fruck authored Dec 20, 2023
1 parent 2f38770 commit ad6209b
Show file tree
Hide file tree
Showing 111 changed files with 3,424 additions and 275 deletions.
30 changes: 27 additions & 3 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ docs/ListInstancesAuditResponseLinks.md
docs/ListInstancesResponse.md
docs/ListInstancesResponseData.md
docs/ListInstancesResponseLinks.md
docs/ListInstancesResponsePagination.md
docs/ListObjectStorageAuditResponse.md
docs/ListObjectStorageAuditResponseLinks.md
docs/ListObjectStorageResponse.md
Expand All @@ -185,11 +186,13 @@ docs/ListTagAuditsResponse.md
docs/ListTagAuditsResponseLinks.md
docs/ListTagResponse.md
docs/ListTagResponseLinks.md
docs/ListTicketMetadataResponse.md
docs/ListTicketMetadataResponseLinks.md
docs/ListUserAuditResponse.md
docs/ListUserAuditResponseLinks.md
docs/ListUserResponse.md
docs/ListUserResponseLinks.md
docs/ListUserResponsePagination.md
docs/MetadataType.md
docs/MinimumRequirements.md
docs/ObjectStorageAuditResponse.md
docs/ObjectStorageResponse.md
Expand Down Expand Up @@ -243,6 +246,11 @@ docs/TagResponse.md
docs/TagResponse1.md
docs/TagsApi.md
docs/TagsAuditsApi.md
docs/TicketCreateRequest.md
docs/TicketCreateResponse.md
docs/TicketCreateResponseLinks.md
docs/TicketResponse.md
docs/TicketsApi.md
docs/UnassignInstancePrivateNetworkResponse.md
docs/UpdateCustomImageRequest.md
docs/UpdateCustomImageResponse.md
Expand Down Expand Up @@ -298,6 +306,7 @@ pfruck_contabo/api/tag_assignments_api.py
pfruck_contabo/api/tag_assignments_audits_api.py
pfruck_contabo/api/tags_api.py
pfruck_contabo/api/tags_audits_api.py
pfruck_contabo/api/tickets_api.py
pfruck_contabo/api/users_api.py
pfruck_contabo/api/users_audits_api.py
pfruck_contabo/api_client.py
Expand Down Expand Up @@ -456,6 +465,7 @@ pfruck_contabo/model/list_instances_audit_response_links.py
pfruck_contabo/model/list_instances_response.py
pfruck_contabo/model/list_instances_response_data.py
pfruck_contabo/model/list_instances_response_links.py
pfruck_contabo/model/list_instances_response_pagination.py
pfruck_contabo/model/list_object_storage_audit_response.py
pfruck_contabo/model/list_object_storage_audit_response_links.py
pfruck_contabo/model/list_object_storage_response.py
Expand All @@ -481,11 +491,13 @@ pfruck_contabo/model/list_tag_audits_response.py
pfruck_contabo/model/list_tag_audits_response_links.py
pfruck_contabo/model/list_tag_response.py
pfruck_contabo/model/list_tag_response_links.py
pfruck_contabo/model/list_ticket_metadata_response.py
pfruck_contabo/model/list_ticket_metadata_response_links.py
pfruck_contabo/model/list_user_audit_response.py
pfruck_contabo/model/list_user_audit_response_links.py
pfruck_contabo/model/list_user_response.py
pfruck_contabo/model/list_user_response_links.py
pfruck_contabo/model/list_user_response_pagination.py
pfruck_contabo/model/metadata_type.py
pfruck_contabo/model/minimum_requirements.py
pfruck_contabo/model/object_storage_audit_response.py
pfruck_contabo/model/object_storage_response.py
Expand Down Expand Up @@ -525,6 +537,10 @@ pfruck_contabo/model/tag_assignment_self_links.py
pfruck_contabo/model/tag_audit_response.py
pfruck_contabo/model/tag_response.py
pfruck_contabo/model/tag_response1.py
pfruck_contabo/model/ticket_create_request.py
pfruck_contabo/model/ticket_create_response.py
pfruck_contabo/model/ticket_create_response_links.py
pfruck_contabo/model/ticket_response.py
pfruck_contabo/model/unassign_instance_private_network_response.py
pfruck_contabo/model/update_custom_image_request.py
pfruck_contabo/model/update_custom_image_response.py
Expand Down Expand Up @@ -721,6 +737,7 @@ test/test_list_instances_audit_response_links.py
test/test_list_instances_response.py
test/test_list_instances_response_data.py
test/test_list_instances_response_links.py
test/test_list_instances_response_pagination.py
test/test_list_object_storage_audit_response.py
test/test_list_object_storage_audit_response_links.py
test/test_list_object_storage_response.py
Expand All @@ -746,11 +763,13 @@ test/test_list_tag_audits_response.py
test/test_list_tag_audits_response_links.py
test/test_list_tag_response.py
test/test_list_tag_response_links.py
test/test_list_ticket_metadata_response.py
test/test_list_ticket_metadata_response_links.py
test/test_list_user_audit_response.py
test/test_list_user_audit_response_links.py
test/test_list_user_response.py
test/test_list_user_response_links.py
test/test_list_user_response_pagination.py
test/test_metadata_type.py
test/test_minimum_requirements.py
test/test_object_storage_audit_response.py
test/test_object_storage_response.py
Expand Down Expand Up @@ -804,6 +823,11 @@ test/test_tag_response.py
test/test_tag_response1.py
test/test_tags_api.py
test/test_tags_audits_api.py
test/test_ticket_create_request.py
test/test_ticket_create_response.py
test/test_ticket_create_response_links.py
test/test_ticket_response.py
test/test_tickets_api.py
test/test_unassign_instance_private_network_response.py
test/test_update_custom_image_request.py
test/test_update_custom_image_response.py
Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ Class | Method | HTTP request | Description
*TagsApi* | [**retrieve_tag_list**](docs/TagsApi.md#retrieve_tag_list) | **GET** /v1/tags | List tags
*TagsApi* | [**update_tag**](docs/TagsApi.md#update_tag) | **PATCH** /v1/tags/{tagId} | Update specific tag by id
*TagsAuditsApi* | [**retrieve_tag_audits_list**](docs/TagsAuditsApi.md#retrieve_tag_audits_list) | **GET** /v1/tags/audits | List history about your assignments (audit)
*TicketsApi* | [**create_support_ticket**](docs/TicketsApi.md#create_support_ticket) | **POST** /v1/tickets | Create a new support ticket
*TicketsApi* | [**retrieve_ticket_metadata**](docs/TicketsApi.md#retrieve_ticket_metadata) | **GET** /v1/tickets/metadata | Retrieve ticket metadata
*UsersApi* | [**create_user**](docs/UsersApi.md#create_user) | **POST** /v1/users | Create a new user
*UsersApi* | [**delete_user**](docs/UsersApi.md#delete_user) | **DELETE** /v1/users/{userId} | Delete existing user by id
*UsersApi* | [**generate_client_secret**](docs/UsersApi.md#generate_client_secret) | **PUT** /v1/users/client/secret | Generate new client secret
Expand Down Expand Up @@ -347,6 +349,7 @@ Class | Method | HTTP request | Description
- [ListInstancesResponse](docs/ListInstancesResponse.md)
- [ListInstancesResponseData](docs/ListInstancesResponseData.md)
- [ListInstancesResponseLinks](docs/ListInstancesResponseLinks.md)
- [ListInstancesResponsePagination](docs/ListInstancesResponsePagination.md)
- [ListObjectStorageAuditResponse](docs/ListObjectStorageAuditResponse.md)
- [ListObjectStorageAuditResponseLinks](docs/ListObjectStorageAuditResponseLinks.md)
- [ListObjectStorageResponse](docs/ListObjectStorageResponse.md)
Expand All @@ -372,11 +375,13 @@ Class | Method | HTTP request | Description
- [ListTagAuditsResponseLinks](docs/ListTagAuditsResponseLinks.md)
- [ListTagResponse](docs/ListTagResponse.md)
- [ListTagResponseLinks](docs/ListTagResponseLinks.md)
- [ListTicketMetadataResponse](docs/ListTicketMetadataResponse.md)
- [ListTicketMetadataResponseLinks](docs/ListTicketMetadataResponseLinks.md)
- [ListUserAuditResponse](docs/ListUserAuditResponse.md)
- [ListUserAuditResponseLinks](docs/ListUserAuditResponseLinks.md)
- [ListUserResponse](docs/ListUserResponse.md)
- [ListUserResponseLinks](docs/ListUserResponseLinks.md)
- [ListUserResponsePagination](docs/ListUserResponsePagination.md)
- [MetadataType](docs/MetadataType.md)
- [MinimumRequirements](docs/MinimumRequirements.md)
- [ObjectStorageAuditResponse](docs/ObjectStorageAuditResponse.md)
- [ObjectStorageResponse](docs/ObjectStorageResponse.md)
Expand Down Expand Up @@ -416,6 +421,10 @@ Class | Method | HTTP request | Description
- [TagAuditResponse](docs/TagAuditResponse.md)
- [TagResponse](docs/TagResponse.md)
- [TagResponse1](docs/TagResponse1.md)
- [TicketCreateRequest](docs/TicketCreateRequest.md)
- [TicketCreateResponse](docs/TicketCreateResponse.md)
- [TicketCreateResponseLinks](docs/TicketCreateResponseLinks.md)
- [TicketResponse](docs/TicketResponse.md)
- [UnassignInstancePrivateNetworkResponse](docs/UnassignInstancePrivateNetworkResponse.md)
- [UpdateCustomImageRequest](docs/UpdateCustomImageRequest.md)
- [UpdateCustomImageResponse](docs/UpdateCustomImageResponse.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/FindTagResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**data** | [**[TagResponse]**](TagResponse.md) | |
**data** | [**[TagResponse1]**](TagResponse1.md) | |
**links** | [**CreateTagResponseLinks**](CreateTagResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]

Expand Down
2 changes: 1 addition & 1 deletion docs/ImageAuditResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[ImageAuditResponseData]**](ImageAuditResponseData.md) | |
**links** | [**ImageAuditResponseLinks**](ImageAuditResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListApplicationsResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[ApplicationResponse]**](ApplicationResponse.md) | |
**links** | [**ListApplicationsResponseLinks**](ListApplicationsResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListAssignmentAuditsResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[AssignmentAuditResponse]**](AssignmentAuditResponse.md) | |
**links** | [**ListAssignmentAuditsResponseLinks**](ListAssignmentAuditsResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListAssignmentResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[AssignmentResponse]**](AssignmentResponse.md) | |
**links** | [**ListAssignmentResponseLinks**](ListAssignmentResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListCredentialResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[CredentialData]**](CredentialData.md) | |
**links** | [**ListCredentialResponseLinks**](ListCredentialResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListDataCenterResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[DataCenterResponse]**](DataCenterResponse.md) | |
**links** | [**ListDataCenterResponseLinks**](ListDataCenterResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListImageResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[ListImageResponseData]**](ListImageResponseData.md) | |
**links** | [**ListImageResponseLinks**](ListImageResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListImageResponseData.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Name | Type | Description | Notes
**standard_image** | **bool** | Flag indicating that image is either a standard (true) or a custom image (false) |
**creation_date** | **datetime** | The creation date time for the image |
**last_modified_date** | **datetime** | The last modified date time for the image |
**tags** | [**[TagResponse1]**](TagResponse1.md) | The tags assigned to the image |
**tags** | [**[TagResponse]**](TagResponse.md) | The tags assigned to the image |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/ListInstancesActionsAuditResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[InstancesActionsAuditResponse]**](InstancesActionsAuditResponse.md) | |
**links** | [**ListInstancesActionsAuditResponseLinks**](ListInstancesActionsAuditResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListInstancesAuditResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[InstancesAuditResponse]**](InstancesAuditResponse.md) | |
**links** | [**ListInstancesAuditResponseLinks**](ListInstancesAuditResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListInstancesResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[ListInstancesResponseData]**](ListInstancesResponseData.md) | |
**links** | [**ListInstancesResponseLinks**](ListInstancesResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ListUserResponsePagination
# ListInstancesResponsePagination

Data about pagination like how many results, pages, page size.

Expand Down
2 changes: 1 addition & 1 deletion docs/ListObjectStorageAuditResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[ObjectStorageAuditResponse]**](ObjectStorageAuditResponse.md) | |
**links** | [**ListObjectStorageAuditResponseLinks**](ListObjectStorageAuditResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListObjectStorageResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[ObjectStorageResponse]**](ObjectStorageResponse.md) | |
**links** | [**ListObjectStorageResponseLinks**](ListObjectStorageResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListPrivateNetworkAuditResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[PrivateNetworkAuditResponse]**](PrivateNetworkAuditResponse.md) | |
**links** | [**ListPrivateNetworkAuditResponseLinks**](ListPrivateNetworkAuditResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListPrivateNetworkResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[ListPrivateNetworkResponseData]**](ListPrivateNetworkResponseData.md) | |
**links** | [**ListPrivateNetworkResponseLinks**](ListPrivateNetworkResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListRoleResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[RoleResponse]**](RoleResponse.md) | |
**links** | [**ListRoleResponseLinks**](ListRoleResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListSecretAuditResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[SecretAuditResponse]**](SecretAuditResponse.md) | |
**links** | [**ListSecretAuditResponseLinks**](ListSecretAuditResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/ListSecretResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pagination** | [**ListUserResponsePagination**](ListUserResponsePagination.md) | |
**pagination** | [**ListInstancesResponsePagination**](ListInstancesResponsePagination.md) | |
**data** | [**[SecretResponse]**](SecretResponse.md) | |
**links** | [**ListSecretResponseLinks**](ListSecretResponseLinks.md) | |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Expand Down
Loading

0 comments on commit ad6209b

Please sign in to comment.