| 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] |
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)