Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

UserEntitlementInfo

Properties

Name Type Description Notes
id str
name str
type str
permissions List[AccessType]

Example

from ibm_gdsc_sdk_saas.models.user_entitlement_info import UserEntitlementInfo

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

# convert the object into a dict
user_entitlement_info_dict = user_entitlement_info_instance.to_dict()
# create an instance of UserEntitlementInfo from a dict
user_entitlement_info_from_dict = UserEntitlementInfo.from_dict(user_entitlement_info_dict)

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