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
6 changes: 6 additions & 0 deletions python-restclient/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ docs/HelloWorldMessage.md
docs/HtcJobID.md
docs/ISize.md
docs/Identity.md
docs/MathModelChildSummary.md
docs/MathModelResourceApi.md
docs/MathModelSummary.md
docs/MathType.md
docs/MathmodelRef.md
docs/ModelType.md
Expand Down Expand Up @@ -70,6 +73,7 @@ vcell_client/api/admin_resource_api.py
vcell_client/api/bio_model_resource_api.py
vcell_client/api/field_data_resource_api.py
vcell_client/api/hello_world_api.py
vcell_client/api/math_model_resource_api.py
vcell_client/api/publication_resource_api.py
vcell_client/api/simulation_resource_api.py
vcell_client/api/solver_resource_api.py
Expand Down Expand Up @@ -103,6 +107,8 @@ vcell_client/models/hello_world_message.py
vcell_client/models/htc_job_id.py
vcell_client/models/i_size.py
vcell_client/models/identity.py
vcell_client/models/math_model_child_summary.py
vcell_client/models/math_model_summary.py
vcell_client/models/math_type.py
vcell_client/models/mathmodel_ref.py
vcell_client/models/model_type.py
Expand Down
7 changes: 7 additions & 0 deletions python-restclient/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ Class | Method | HTTP request | Description
*FieldDataResourceApi* | [**get_shape_from_id**](docs/FieldDataResourceApi.md#get_shape_from_id) | **GET** /api/v1/fieldData/shape/{fieldDataID} | Get the shape of the field data. That is it's size, origin, extent, times, and data identifiers.
*FieldDataResourceApi* | [**save**](docs/FieldDataResourceApi.md#save) | **POST** /api/v1/fieldData/save | Take the generated field data, and save it to the server. User may adjust the analyzed file before uploading to edit defaults.
*HelloWorldApi* | [**get_hello_world**](docs/HelloWorldApi.md#get_hello_world) | **GET** /api/v1/helloworld | Get hello world message.
*MathModelResourceApi* | [**delete_math_model**](docs/MathModelResourceApi.md#delete_math_model) | **DELETE** /api/v1/mathModel/{id} |
*MathModelResourceApi* | [**get_summaries**](docs/MathModelResourceApi.md#get_summaries) | **GET** /api/v1/mathModel/summaries |
*MathModelResourceApi* | [**get_summary**](docs/MathModelResourceApi.md#get_summary) | **GET** /api/v1/mathModel/summary/{id} |
*MathModelResourceApi* | [**get_vcml**](docs/MathModelResourceApi.md#get_vcml) | **GET** /api/v1/mathModel/{id} |
*MathModelResourceApi* | [**save_math_model**](docs/MathModelResourceApi.md#save_math_model) | **POST** /api/v1/mathModel |
*PublicationResourceApi* | [**create_publication**](docs/PublicationResourceApi.md#create_publication) | **POST** /api/v1/publications | Create publication
*PublicationResourceApi* | [**delete_publication**](docs/PublicationResourceApi.md#delete_publication) | **DELETE** /api/v1/publications/{id} | Delete publication
*PublicationResourceApi* | [**get_publication_by_id**](docs/PublicationResourceApi.md#get_publication_by_id) | **GET** /api/v1/publications/{id} | Get publication by ID
Expand Down Expand Up @@ -154,6 +159,8 @@ Class | Method | HTTP request | Description
- [HtcJobID](docs/HtcJobID.md)
- [ISize](docs/ISize.md)
- [Identity](docs/Identity.md)
- [MathModelChildSummary](docs/MathModelChildSummary.md)
- [MathModelSummary](docs/MathModelSummary.md)
- [MathType](docs/MathType.md)
- [MathmodelRef](docs/MathmodelRef.md)
- [ModelType](docs/ModelType.md)
Expand Down
4 changes: 2 additions & 2 deletions python-restclient/docs/BioModelResourceApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ configuration = vcell_client.Configuration(
with vcell_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = vcell_client.BioModelResourceApi(api_client)
include_public_and_shared = True # bool | Includes BioModel summaries that are public or shared with requester. (optional)
include_public_and_shared = True # bool | Includes BioModel summaries that are public or shared with requester. Default is true. (optional)

try:
# Return BioModel summaries.
Expand All @@ -188,7 +188,7 @@ with vcell_client.ApiClient(configuration) as api_client:

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**include_public_and_shared** | **bool**| Includes BioModel summaries that are public or shared with requester. | [optional]
**include_public_and_shared** | **bool**| Includes BioModel summaries that are public or shared with requester. Default is true. | [optional]

### Return type

Expand Down
32 changes: 32 additions & 0 deletions python-restclient/docs/MathModelChildSummary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# MathModelChildSummary


## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**model_type** | [**MathType**](MathType.md) | | [optional]
**geometry_dimension** | **int** | | [optional]
**geometry_name** | **str** | | [optional]
**simulation_annotations** | **List[str]** | | [optional]
**simulation_names** | **List[str]** | | [optional]

## Example

```python
from vcell_client.models.math_model_child_summary import MathModelChildSummary

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

# convert the object into a dict
math_model_child_summary_dict = math_model_child_summary_instance.to_dict()
# create an instance of MathModelChildSummary from a dict
math_model_child_summary_form_dict = math_model_child_summary.from_dict(math_model_child_summary_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