-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1406 from virtualcell/field-data-bug-fix
Field Data Endpoint Implementation
- Loading branch information
Showing
235 changed files
with
14,967 additions
and
9,872 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
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 was deleted.
Oops, something went wrong.
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,35 @@ | ||
# AnalyzedResultsFromFieldData | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**short_spec_data** | **List[List[List[int]]]** | | [optional] | ||
**var_names** | **List[str]** | | [optional] | ||
**times** | **List[float]** | | [optional] | ||
**origin** | [**Origin**](Origin.md) | | [optional] | ||
**extent** | [**Extent**](Extent.md) | | [optional] | ||
**isize** | [**ISize**](ISize.md) | | [optional] | ||
**annotation** | **str** | | [optional] | ||
**name** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.analyzed_results_from_field_data import AnalyzedResultsFromFieldData | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AnalyzedResultsFromFieldData from a JSON string | ||
analyzed_results_from_field_data_instance = AnalyzedResultsFromFieldData.from_json(json) | ||
# print the JSON string representation of the object | ||
print AnalyzedResultsFromFieldData.to_json() | ||
|
||
# convert the object into a dict | ||
analyzed_results_from_field_data_dict = analyzed_results_from_field_data_instance.to_dict() | ||
# create an instance of AnalyzedResultsFromFieldData from a dict | ||
analyzed_results_from_field_data_form_dict = analyzed_results_from_field_data.from_dict(analyzed_results_from_field_data_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 @@ | ||
# DataIdentifier | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**name** | **str** | | [optional] | ||
**display_name** | **str** | | [optional] | ||
**variable_type** | [**VariableType**](VariableType.md) | | [optional] | ||
**domain** | [**Domain**](Domain.md) | | [optional] | ||
**b_function** | **bool** | | [optional] | ||
**function** | **bool** | | [optional] | ||
**visible** | **bool** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.data_identifier import DataIdentifier | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of DataIdentifier from a JSON string | ||
data_identifier_instance = DataIdentifier.from_json(json) | ||
# print the JSON string representation of the object | ||
print DataIdentifier.to_json() | ||
|
||
# convert the object into a dict | ||
data_identifier_dict = data_identifier_instance.to_dict() | ||
# create an instance of DataIdentifier from a dict | ||
data_identifier_form_dict = data_identifier.from_dict(data_identifier_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,30 @@ | ||
# Extent | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**x** | **float** | | [optional] | ||
**y** | **float** | | [optional] | ||
**z** | **float** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.extent import Extent | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of Extent from a JSON string | ||
extent_instance = Extent.from_json(json) | ||
# print the JSON string representation of the object | ||
print Extent.to_json() | ||
|
||
# convert the object into a dict | ||
extent_dict = extent_instance.to_dict() | ||
# create an instance of Extent from a dict | ||
extent_form_dict = extent.from_dict(extent_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 @@ | ||
# ExternalDataIdentifier | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**key** | [**KeyValue**](KeyValue.md) | | [optional] | ||
**owner** | [**User**](User.md) | | [optional] | ||
**name** | **str** | | [optional] | ||
**job_index** | **int** | | [optional] | ||
**simulation_key** | [**KeyValue**](KeyValue.md) | | [optional] | ||
**parameter_scan_type** | **bool** | | [optional] | ||
**data_key** | [**KeyValue**](KeyValue.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.external_data_identifier import ExternalDataIdentifier | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ExternalDataIdentifier from a JSON string | ||
external_data_identifier_instance = ExternalDataIdentifier.from_json(json) | ||
# print the JSON string representation of the object | ||
print ExternalDataIdentifier.to_json() | ||
|
||
# convert the object into a dict | ||
external_data_identifier_dict = external_data_identifier_instance.to_dict() | ||
# create an instance of ExternalDataIdentifier from a dict | ||
external_data_identifier_form_dict = external_data_identifier.from_dict(external_data_identifier_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,30 @@ | ||
# FieldDataReference | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**external_data_identifier** | [**ExternalDataIdentifier**](ExternalDataIdentifier.md) | | [optional] | ||
**external_data_annotation** | **str** | | [optional] | ||
**external_data_id_sim_refs** | [**List[KeyValue]**](KeyValue.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.field_data_reference import FieldDataReference | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of FieldDataReference from a JSON string | ||
field_data_reference_instance = FieldDataReference.from_json(json) | ||
# print the JSON string representation of the object | ||
print FieldDataReference.to_json() | ||
|
||
# convert the object into a dict | ||
field_data_reference_dict = field_data_reference_instance.to_dict() | ||
# create an instance of FieldDataReference from a dict | ||
field_data_reference_form_dict = field_data_reference.from_dict(field_data_reference_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.