Skip to content

SubPlanReport

Properties

NameTypeDescriptionNotes
suggestionsList[str]

Example

python
from syntheticusers.models.sub_plan_report import SubPlanReport

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

# convert the object into a dict
sub_plan_report_dict = sub_plan_report_instance.to_dict()
# create an instance of SubPlanReport from a dict
sub_plan_report_from_dict = SubPlanReport.from_dict(sub_plan_report_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.