Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 821 Bytes

MainCreds.md

File metadata and controls

29 lines (20 loc) · 821 Bytes

MainCreds

Properties

Name Type Description Notes
use_main_credentials bool

Example

from iblai.models.main_creds import MainCreds

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

# convert the object into a dict
main_creds_dict = main_creds_instance.to_dict()
# create an instance of MainCreds from a dict
main_creds_from_dict = MainCreds.from_dict(main_creds_dict)

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