Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

PointsPercentile.md

File metadata and controls

31 lines (22 loc) · 1.07 KB

PointsPercentile

Properties

Name Type Description Notes
username str
points float
percentile float Percentile of points for user. If an `org` was provided, this is the percentile of the user relative to users within the org.

Example

from iblai.models.points_percentile import PointsPercentile

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

# convert the object into a dict
points_percentile_dict = points_percentile_instance.to_dict()
# create an instance of PointsPercentile from a dict
points_percentile_from_dict = PointsPercentile.from_dict(points_percentile_dict)

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