Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.33 KB

File metadata and controls

32 lines (23 loc) · 1.33 KB

GenerateSuggestions200Response

Properties

Name Type Description Notes
success bool [optional]
count int Number of suggestions generated [optional]
auto_approved int Number of suggestions auto-approved [optional]
opportunities List[LinkOpportunity] Top 10 opportunities preview [optional]

Example

from rankvectors.models.generate_suggestions200_response import GenerateSuggestions200Response

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

# convert the object into a dict
generate_suggestions200_response_dict = generate_suggestions200_response_instance.to_dict()
# create an instance of GenerateSuggestions200Response from a dict
generate_suggestions200_response_from_dict = GenerateSuggestions200Response.from_dict(generate_suggestions200_response_dict)

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