Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions qase-api-client/docs/ParameterGroup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# ParameterGroup

Group parameter

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**items** | [**List[ParameterSingle]**](ParameterSingle.md) | |

## Example

```python
from qase.api_client_v1.models.parameter_group import ParameterGroup

# TODO update the JSON string below
json = "{}"
# create an instance of ParameterGroup from a JSON string
parameter_group_instance = ParameterGroup.from_json(json)
# print the JSON string representation of the object
print(ParameterGroup.to_json())

# convert the object into a dict
parameter_group_dict = parameter_group_instance.to_dict()
# create an instance of ParameterGroup from a dict
parameter_group_form_dict = parameter_group.from_dict(parameter_group_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)


30 changes: 30 additions & 0 deletions qase-api-client/docs/ParameterShared.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# ParameterShared

Shared parameter

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**shared_id** | **str** | |

## Example

```python
from qase.api_client_v1.models.parameter_shared import ParameterShared

# TODO update the JSON string below
json = "{}"
# create an instance of ParameterShared from a JSON string
parameter_shared_instance = ParameterShared.from_json(json)
# print the JSON string representation of the object
print(ParameterShared.to_json())

# convert the object into a dict
parameter_shared_dict = parameter_shared_instance.to_dict()
# create an instance of ParameterShared from a dict
parameter_shared_form_dict = parameter_shared.from_dict(parameter_shared_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)


31 changes: 31 additions & 0 deletions qase-api-client/docs/ParameterSingle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# ParameterSingle

Single parameter

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**title** | **str** | |
**values** | **List[str]** | |

## Example

```python
from qase.api_client_v1.models.parameter_single import ParameterSingle

# TODO update the JSON string below
json = "{}"
# create an instance of ParameterSingle from a JSON string
parameter_single_instance = ParameterSingle.from_json(json)
# print the JSON string representation of the object
print(ParameterSingle.to_json())

# convert the object into a dict
parameter_single_dict = parameter_single_instance.to_dict()
# create an instance of ParameterSingle from a dict
parameter_single_form_dict = parameter_single.from_dict(parameter_single_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)


2 changes: 1 addition & 1 deletion qase-api-client/docs/QqlTestCase.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Name | Type | Description | Notes
**attachments** | [**List[Attachment]**](Attachment.md) | | [optional]
**steps_type** | **str** | | [optional]
**steps** | [**List[TestStep]**](TestStep.md) | | [optional]
**params** | [**TestCaseParams**](TestCaseParams.md) | | [optional]
**params** | [**QqlTestCaseParams**](QqlTestCaseParams.md) | | [optional]
**tags** | [**List[TagValue]**](TagValue.md) | | [optional]
**member_id** | **int** | Deprecated, use `author_id` instead. | [optional]
**author_id** | **int** | | [optional]
Expand Down
28 changes: 28 additions & 0 deletions qase-api-client/docs/QqlTestCaseParams.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# QqlTestCaseParams


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------

## Example

```python
from qase.api_client_v1.models.qql_test_case_params import QqlTestCaseParams

# TODO update the JSON string below
json = "{}"
# create an instance of QqlTestCaseParams from a JSON string
qql_test_case_params_instance = QqlTestCaseParams.from_json(json)
# print the JSON string representation of the object
print(QqlTestCaseParams.to_json())

# convert the object into a dict
qql_test_case_params_dict = qql_test_case_params_instance.to_dict()
# create an instance of QqlTestCaseParams from a dict
qql_test_case_params_form_dict = qql_test_case_params.from_dict(qql_test_case_params_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)


2 changes: 1 addition & 1 deletion qase-api-client/docs/SearchResponseAllOfResultEntities.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Name | Type | Description | Notes
**milestone_id** | **int** | | [optional]
**suite_id** | **int** | | [optional]
**steps_type** | **str** | | [optional]
**params** | [**TestCaseParams**](TestCaseParams.md) | | [optional]
**params** | [**QqlTestCaseParams**](QqlTestCaseParams.md) | | [optional]
**author_id** | **int** | | [optional]
**updated_by** | **int** | Author ID of the last update. | [optional]
**defect_id** | **int** | |
Expand Down
34 changes: 34 additions & 0 deletions qase-api-client/docs/SharedParameter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# SharedParameter


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | |
**title** | **str** | |
**type** | **str** | |
**project_codes** | **List[str]** | |
**is_enabled_for_all_projects** | **bool** | |
**parameters** | [**SharedParameterParameter**](SharedParameterParameter.md) | |

## Example

```python
from qase.api_client_v1.models.shared_parameter import SharedParameter

# TODO update the JSON string below
json = "{}"
# create an instance of SharedParameter from a JSON string
shared_parameter_instance = SharedParameter.from_json(json)
# print the JSON string representation of the object
print(SharedParameter.to_json())

# convert the object into a dict
shared_parameter_dict = shared_parameter_instance.to_dict()
# create an instance of SharedParameter from a dict
shared_parameter_form_dict = shared_parameter.from_dict(shared_parameter_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)


33 changes: 33 additions & 0 deletions qase-api-client/docs/SharedParameterCreate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# SharedParameterCreate


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**title** | **str** | |
**type** | **str** | |
**project_codes** | **List[str]** | List of project codes to associate with this shared parameter | [optional]
**is_enabled_for_all_projects** | **bool** | |
**parameters** | [**SharedParameterParameter**](SharedParameterParameter.md) | |

## Example

```python
from qase.api_client_v1.models.shared_parameter_create import SharedParameterCreate

# TODO update the JSON string below
json = "{}"
# create an instance of SharedParameterCreate from a JSON string
shared_parameter_create_instance = SharedParameterCreate.from_json(json)
# print the JSON string representation of the object
print(SharedParameterCreate.to_json())

# convert the object into a dict
shared_parameter_create_dict = shared_parameter_create_instance.to_dict()
# create an instance of SharedParameterCreate from a dict
shared_parameter_create_form_dict = shared_parameter_create.from_dict(shared_parameter_create_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)


30 changes: 30 additions & 0 deletions qase-api-client/docs/SharedParameterListResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# SharedParameterListResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **bool** | | [optional]
**result** | [**SharedParameterListResponseAllOfResult**](SharedParameterListResponseAllOfResult.md) | | [optional]

## Example

```python
from qase.api_client_v1.models.shared_parameter_list_response import SharedParameterListResponse

# TODO update the JSON string below
json = "{}"
# create an instance of SharedParameterListResponse from a JSON string
shared_parameter_list_response_instance = SharedParameterListResponse.from_json(json)
# print the JSON string representation of the object
print(SharedParameterListResponse.to_json())

# convert the object into a dict
shared_parameter_list_response_dict = shared_parameter_list_response_instance.to_dict()
# create an instance of SharedParameterListResponse from a dict
shared_parameter_list_response_form_dict = shared_parameter_list_response.from_dict(shared_parameter_list_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)


30 changes: 30 additions & 0 deletions qase-api-client/docs/SharedParameterListResponseAllOfResult.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# SharedParameterListResponseAllOfResult


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**total** | **int** | |
**entities** | [**List[SharedParameter]**](SharedParameter.md) | |

## Example

```python
from qase.api_client_v1.models.shared_parameter_list_response_all_of_result import SharedParameterListResponseAllOfResult

# TODO update the JSON string below
json = "{}"
# create an instance of SharedParameterListResponseAllOfResult from a JSON string
shared_parameter_list_response_all_of_result_instance = SharedParameterListResponseAllOfResult.from_json(json)
# print the JSON string representation of the object
print(SharedParameterListResponseAllOfResult.to_json())

# convert the object into a dict
shared_parameter_list_response_all_of_result_dict = shared_parameter_list_response_all_of_result_instance.to_dict()
# create an instance of SharedParameterListResponseAllOfResult from a dict
shared_parameter_list_response_all_of_result_form_dict = shared_parameter_list_response_all_of_result.from_dict(shared_parameter_list_response_all_of_result_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)


28 changes: 28 additions & 0 deletions qase-api-client/docs/SharedParameterParameter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# SharedParameterParameter


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------

## Example

```python
from qase.api_client_v1.models.shared_parameter_parameter import SharedParameterParameter

# TODO update the JSON string below
json = "{}"
# create an instance of SharedParameterParameter from a JSON string
shared_parameter_parameter_instance = SharedParameterParameter.from_json(json)
# print the JSON string representation of the object
print(SharedParameterParameter.to_json())

# convert the object into a dict
shared_parameter_parameter_dict = shared_parameter_parameter_instance.to_dict()
# create an instance of SharedParameterParameter from a dict
shared_parameter_parameter_form_dict = shared_parameter_parameter.from_dict(shared_parameter_parameter_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)


30 changes: 30 additions & 0 deletions qase-api-client/docs/SharedParameterResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# SharedParameterResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **bool** | | [optional]
**result** | [**SharedParameter**](SharedParameter.md) | | [optional]

## Example

```python
from qase.api_client_v1.models.shared_parameter_response import SharedParameterResponse

# TODO update the JSON string below
json = "{}"
# create an instance of SharedParameterResponse from a JSON string
shared_parameter_response_instance = SharedParameterResponse.from_json(json)
# print the JSON string representation of the object
print(SharedParameterResponse.to_json())

# convert the object into a dict
shared_parameter_response_dict = shared_parameter_response_instance.to_dict()
# create an instance of SharedParameterResponse from a dict
shared_parameter_response_form_dict = shared_parameter_response.from_dict(shared_parameter_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)


32 changes: 32 additions & 0 deletions qase-api-client/docs/SharedParameterUpdate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# SharedParameterUpdate


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**title** | **str** | | [optional]
**project_codes** | **List[str]** | List of project codes to associate with this shared parameter | [optional]
**is_enabled_for_all_projects** | **bool** | | [optional]
**parameters** | [**SharedParameterParameter**](SharedParameterParameter.md) | | [optional]

## Example

```python
from qase.api_client_v1.models.shared_parameter_update import SharedParameterUpdate

# TODO update the JSON string below
json = "{}"
# create an instance of SharedParameterUpdate from a JSON string
shared_parameter_update_instance = SharedParameterUpdate.from_json(json)
# print the JSON string representation of the object
print(SharedParameterUpdate.to_json())

# convert the object into a dict
shared_parameter_update_dict = shared_parameter_update_instance.to_dict()
# create an instance of SharedParameterUpdate from a dict
shared_parameter_update_form_dict = shared_parameter_update.from_dict(shared_parameter_update_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)


Loading