Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 852 Bytes

UseMainCreds.md

File metadata and controls

29 lines (20 loc) · 852 Bytes

UseMainCreds

Properties

Name Type Description Notes
message str

Example

from iblai.models.use_main_creds import UseMainCreds

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

# convert the object into a dict
use_main_creds_dict = use_main_creds_instance.to_dict()
# create an instance of UseMainCreds from a dict
use_main_creds_from_dict = UseMainCreds.from_dict(use_main_creds_dict)

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