-
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.
Retrieve Field Data IDs and Shape Information With Rest
Have the DB operation of retrieving all field data IDs of a user, and the shape information of a field data entry be done through the REST endpoints.
- Loading branch information
1 parent
e7522a8
commit 5cb8b12
Showing
113 changed files
with
4,605 additions
and
4,898 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Domain | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**name** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.domain import Domain | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of Domain from a JSON string | ||
domain_instance = Domain.from_json(json) | ||
# print the JSON string representation of the object | ||
print Domain.to_json() | ||
|
||
# convert the object into a dict | ||
domain_dict = domain_instance.to_dict() | ||
# create an instance of Domain from a dict | ||
domain_form_dict = domain.from_dict(domain_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 @@ | ||
# FieldDataFileOperationResults | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**data_identifier_arr** | [**List[DataIdentifier]**](DataIdentifier.md) | | [optional] | ||
**external_data_identifier** | [**ExternalDataIdentifier**](ExternalDataIdentifier.md) | | [optional] | ||
**i_size** | [**ISize**](ISize.md) | | [optional] | ||
**origin** | [**Origin**](Origin.md) | | [optional] | ||
**extent** | [**Extent**](Extent.md) | | [optional] | ||
**times** | **List[float]** | | [optional] | ||
**dependant_function_info** | [**List[FieldDataReferenceInfo]**](FieldDataReferenceInfo.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.field_data_file_operation_results import FieldDataFileOperationResults | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of FieldDataFileOperationResults from a JSON string | ||
field_data_file_operation_results_instance = FieldDataFileOperationResults.from_json(json) | ||
# print the JSON string representation of the object | ||
print FieldDataFileOperationResults.to_json() | ||
|
||
# convert the object into a dict | ||
field_data_file_operation_results_dict = field_data_file_operation_results_instance.to_dict() | ||
# create an instance of FieldDataFileOperationResults from a dict | ||
field_data_file_operation_results_form_dict = field_data_file_operation_results.from_dict(field_data_file_operation_results_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,32 @@ | ||
# FieldDataInfo | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**extent** | [**Extent**](Extent.md) | | [optional] | ||
**origin** | [**Origin**](Origin.md) | | [optional] | ||
**isize** | [**ISize**](ISize.md) | | [optional] | ||
**data_identifier** | [**List[DataIdentifier]**](DataIdentifier.md) | | [optional] | ||
**times** | **List[float]** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.field_data_info import FieldDataInfo | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of FieldDataInfo from a JSON string | ||
field_data_info_instance = FieldDataInfo.from_json(json) | ||
# print the JSON string representation of the object | ||
print FieldDataInfo.to_json() | ||
|
||
# convert the object into a dict | ||
field_data_info_dict = field_data_info_instance.to_dict() | ||
# create an instance of FieldDataInfo from a dict | ||
field_data_info_form_dict = field_data_info.from_dict(field_data_info_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 @@ | ||
# FieldDataReferenceInfo | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**reference_source_type** | **str** | | [optional] | ||
**reference_source_name** | **str** | | [optional] | ||
**application_name** | **str** | | [optional] | ||
**simulation_name** | **str** | | [optional] | ||
**ref_source_version_date** | **str** | | [optional] | ||
**func_names** | **List[str]** | | [optional] | ||
**ref_source_version_key** | [**KeyValue**](KeyValue.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.field_data_reference_info import FieldDataReferenceInfo | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of FieldDataReferenceInfo from a JSON string | ||
field_data_reference_info_instance = FieldDataReferenceInfo.from_json(json) | ||
# print the JSON string representation of the object | ||
print FieldDataReferenceInfo.to_json() | ||
|
||
# convert the object into a dict | ||
field_data_reference_info_dict = field_data_reference_info_instance.to_dict() | ||
# create an instance of FieldDataReferenceInfo from a dict | ||
field_data_reference_info_form_dict = field_data_reference_info.from_dict(field_data_reference_info_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 @@ | ||
# FieldDataReferences | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**external_data_identifiers** | [**List[ExternalDataIdentifier]**](ExternalDataIdentifier.md) | | [optional] | ||
**external_data_annotations** | **List[str]** | | [optional] | ||
**external_data_id_sim_refs** | **Dict[str, List[KeyValue]]** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.field_data_references import FieldDataReferences | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of FieldDataReferences from a JSON string | ||
field_data_references_instance = FieldDataReferences.from_json(json) | ||
# print the JSON string representation of the object | ||
print FieldDataReferences.to_json() | ||
|
||
# convert the object into a dict | ||
field_data_references_dict = field_data_references_instance.to_dict() | ||
# create an instance of FieldDataReferences from a dict | ||
field_data_references_form_dict = field_data_references.from_dict(field_data_references_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.