Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

File metadata and controls

32 lines (23 loc) · 1.01 KB

KpiCreate

Properties

Name Type Description Notes
totals KpiTotals [optional]
entities_by_type Dict[str, int] [optional]
properties_by_predicate Dict[str, int] [optional]
validation Dict[str, object] [optional]

Example

from wordlift_client.models.kpi_create import KpiCreate

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

# convert the object into a dict
kpi_create_dict = kpi_create_instance.to_dict()
# create an instance of KpiCreate from a dict
kpi_create_from_dict = KpiCreate.from_dict(kpi_create_dict)

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