BaseVertexTypeXCsrParams¶
用于存储优化
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
max_vertex_num |
int |
[可选] |
示例¶
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)