BaseEdgeTypeVertexTypePairRelationsInnerXCsrParams¶
Used for storage optimization
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
edge_storage_strategy |
str |
[optional] |
Example¶
from graphscope.flex.rest.models.base_edge_type_vertex_type_pair_relations_inner_x_csr_params import BaseEdgeTypeVertexTypePairRelationsInnerXCsrParams
# TODO update the JSON string below
json = "{}"
# create an instance of BaseEdgeTypeVertexTypePairRelationsInnerXCsrParams from a JSON string
base_edge_type_vertex_type_pair_relations_inner_x_csr_params_instance = BaseEdgeTypeVertexTypePairRelationsInnerXCsrParams.from_json(json)
# print the JSON string representation of the object
print(BaseEdgeTypeVertexTypePairRelationsInnerXCsrParams.to_json())
# convert the object into a dict
base_edge_type_vertex_type_pair_relations_inner_x_csr_params_dict = base_edge_type_vertex_type_pair_relations_inner_x_csr_params_instance.to_dict()
# create an instance of BaseEdgeTypeVertexTypePairRelationsInnerXCsrParams from a dict
base_edge_type_vertex_type_pair_relations_inner_x_csr_params_from_dict = BaseEdgeTypeVertexTypePairRelationsInnerXCsrParams.from_dict(base_edge_type_vertex_type_pair_relations_inner_x_csr_params_dict)