Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 932 Bytes

IBLAIPlatformMeta.md

File metadata and controls

29 lines (20 loc) · 932 Bytes

IBLAIPlatformMeta

Properties

Name Type Description Notes
metadata object [optional]

Example

from iblai.models.iblai_platform_meta import IBLAIPlatformMeta

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

# convert the object into a dict
iblai_platform_meta_dict = iblai_platform_meta_instance.to_dict()
# create an instance of IBLAIPlatformMeta from a dict
iblai_platform_meta_from_dict = IBLAIPlatformMeta.from_dict(iblai_platform_meta_dict)

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