Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.45 KB

File metadata and controls

36 lines (27 loc) · 1.45 KB

ProjectAnalyticsImplementationStats

Properties

Name Type Description Notes
total int [optional]
success int [optional]
failed int [optional]
pending int [optional]
in_progress int [optional]
success_rate float [optional]
avg_credits_used float [optional]
platform_breakdown object [optional]

Example

from rankvectors.models.project_analytics_implementation_stats import ProjectAnalyticsImplementationStats

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

# convert the object into a dict
project_analytics_implementation_stats_dict = project_analytics_implementation_stats_instance.to_dict()
# create an instance of ProjectAnalyticsImplementationStats from a dict
project_analytics_implementation_stats_from_dict = ProjectAnalyticsImplementationStats.from_dict(project_analytics_implementation_stats_dict)

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