Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.21 KB

File metadata and controls

30 lines (22 loc) · 1.21 KB

VectorRegionCreationModel

Schema for random vector generation in a specific region

Properties

Name Type Description Notes
region SetRegionModel [optional]
parameter VectorCreationModel [optional]

Example

from actinia_openapi_python_client.models.vector_region_creation_model import VectorRegionCreationModel

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

# convert the object into a dict
vector_region_creation_model_dict = vector_region_creation_model_instance.to_dict()
# create an instance of VectorRegionCreationModel from a dict
vector_region_creation_model_form_dict = vector_region_creation_model.from_dict(vector_region_creation_model_dict)

[Back to Model list] [Back to API list] [Back to README]