Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.12 KB

File metadata and controls

29 lines (20 loc) · 1.12 KB

GraphSyncHTTPValidationError

Properties

Name Type Description Notes
detail List[GraphSyncValidationError] [optional]

Example

from wordlift_client.models.graph_sync_http_validation_error import GraphSyncHTTPValidationError

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

# convert the object into a dict
graph_sync_http_validation_error_dict = graph_sync_http_validation_error_instance.to_dict()
# create an instance of GraphSyncHTTPValidationError from a dict
graph_sync_http_validation_error_from_dict = GraphSyncHTTPValidationError.from_dict(graph_sync_http_validation_error_dict)

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