Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

IntegrationCredential.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

IntegrationCredential

Properties

Name Type Description Notes
name str
value object [optional]
platform str The platform key

Example

from iblai.models.integration_credential import IntegrationCredential

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

# convert the object into a dict
integration_credential_dict = integration_credential_instance.to_dict()
# create an instance of IntegrationCredential from a dict
integration_credential_from_dict = IntegrationCredential.from_dict(integration_credential_dict)

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