BaseVertexTypeXCsrParams¶
Used for storage optimization
Properties¶
| Name | Type | Description | Notes | 
|---|---|---|---|
| max_vertex_num | int | [optional] | 
Example¶
from gs_interactive.models.base_vertex_type_x_csr_params import BaseVertexTypeXCsrParams
# TODO update the JSON string below
json = "{}"
# create an instance of BaseVertexTypeXCsrParams from a JSON string
base_vertex_type_x_csr_params_instance = BaseVertexTypeXCsrParams.from_json(json)
# print the JSON string representation of the object
print BaseVertexTypeXCsrParams.to_json()
# convert the object into a dict
base_vertex_type_x_csr_params_dict = base_vertex_type_x_csr_params_instance.to_dict()
# create an instance of BaseVertexTypeXCsrParams from a dict
base_vertex_type_x_csr_params_form_dict = base_vertex_type_x_csr_params.from_dict(base_vertex_type_x_csr_params_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]