Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.34 KB

File metadata and controls

37 lines (28 loc) · 1.34 KB

LinkedAccounts

Properties

Name Type Description Notes
cloud_account_id str
cloud_account_name str
is_main_cloud_account bool
installation_status InstallationStatus
service_provider ServiceProvider
region_availability Dict[str, bool] [optional]
regions List[AnalyzedRegion]
creation_time float [optional]
environment Environment [optional]

Example

from ibm_gdsc_sdk_saas.models.linked_accounts import LinkedAccounts

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

# convert the object into a dict
linked_accounts_dict = linked_accounts_instance.to_dict()
# create an instance of LinkedAccounts from a dict
linked_accounts_from_dict = LinkedAccounts.from_dict(linked_accounts_dict)

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