Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.03 KB

File metadata and controls

32 lines (24 loc) · 1.03 KB

UserFeatureAccess

Properties

Name Type Description Notes
adjusted_metrics bool
weather bool
scoreboard bool
live_play_by_play bool
graph_ql bool

Example

from cfbd.models.user_feature_access import UserFeatureAccess

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

# convert the object into a dict
user_feature_access_dict = user_feature_access_instance.to_dict()
# create an instance of UserFeatureAccess from a dict
user_feature_access_from_dict = UserFeatureAccess.from_dict(user_feature_access_dict)

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