Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.23 KB

File metadata and controls

29 lines (20 loc) · 1.23 KB

SubaccountMergeCandidates

Properties

Name Type Description Notes
merge_candidates List[SubaccountMergeCandidatesMergeCandidatesInner] An array of objects that represents the service accounts that the system could merge for this subaccount. [optional]

Example

from clientapi_cpanel.models.subaccount_merge_candidates import SubaccountMergeCandidates

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

# convert the object into a dict
subaccount_merge_candidates_dict = subaccount_merge_candidates_instance.to_dict()
# create an instance of SubaccountMergeCandidates from a dict
subaccount_merge_candidates_from_dict = SubaccountMergeCandidates.from_dict(subaccount_merge_candidates_dict)

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