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
2 changes: 2 additions & 0 deletions python-restclient/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ docs/Origin.md
docs/Publication.md
docs/PublicationInfo.md
docs/PublicationResourceApi.md
docs/SPECIALCLAIM.md
docs/SchedulerStatus.md
docs/SimulationExecutionStatusRecord.md
docs/SimulationJobStatusRecord.md
Expand Down Expand Up @@ -127,6 +128,7 @@ vcell_client/models/simulation_queue_entry_status_record.py
vcell_client/models/simulation_queue_id.py
vcell_client/models/simulation_status_persistent_record.py
vcell_client/models/source_model.py
vcell_client/models/specialclaim.py
vcell_client/models/status.py
vcell_client/models/status_message.py
vcell_client/models/user.py
Expand Down
1 change: 1 addition & 0 deletions python-restclient/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ Class | Method | HTTP request | Description
- [Origin](docs/Origin.md)
- [Publication](docs/Publication.md)
- [PublicationInfo](docs/PublicationInfo.md)
- [SPECIALCLAIM](docs/SPECIALCLAIM.md)
- [SchedulerStatus](docs/SchedulerStatus.md)
- [SimulationExecutionStatusRecord](docs/SimulationExecutionStatusRecord.md)
- [SimulationJobStatusRecord](docs/SimulationJobStatusRecord.md)
Expand Down
10 changes: 10 additions & 0 deletions python-restclient/docs/SPECIALCLAIM.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# SPECIALCLAIM


## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


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


## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**is_special** | **str** | | [default to 'yes']
**my_specials** | [**List[SPECIALCLAIM]**](SPECIALCLAIM.md) | | [optional]

## Example

```python
from vcell_client.models.special_user import SpecialUser

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

# convert the object into a dict
special_user_dict = special_user_instance.to_dict()
# create an instance of SpecialUser from a dict
special_user_form_dict = special_user.from_dict(special_user_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)


1 change: 1 addition & 0 deletions python-restclient/docs/User.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**user_name** | **str** | | [optional]
**key** | **str** | | [optional]
**my_specials** | [**List[SPECIALCLAIM]**](SPECIALCLAIM.md) | | [optional]

## Example

Expand Down
79 changes: 0 additions & 79 deletions python-restclient/test/test_analyzed_file.py

This file was deleted.

79 changes: 0 additions & 79 deletions python-restclient/test/test_analyzed_results_from_field_data.py

This file was deleted.

3 changes: 1 addition & 2 deletions python-restclient/test/test_bio_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ def make_instance(self, include_optional) -> BioModel:
owner_name = '',
owner_key = '',
simulation_key_list = [
vcell_client.models.key_value.KeyValue(
value = 1.337, )
''
],
applications = [
vcell_client.models.application.Application()
Expand Down
Loading