Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

SchemaRecommendation

Properties

Name Type Description Notes
title str Title of the schema recommendation [optional]
description str Detailed description of the recommendation [optional]

Example

from wordlift_client.models.schema_recommendation import SchemaRecommendation

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

# convert the object into a dict
schema_recommendation_dict = schema_recommendation_instance.to_dict()
# create an instance of SchemaRecommendation from a dict
schema_recommendation_from_dict = SchemaRecommendation.from_dict(schema_recommendation_dict)

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