You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromcloudbeds_accounting.models.group_profile_transfer_detailsimportGroupProfileTransferDetails# TODO update the JSON string belowjson="{}"# create an instance of GroupProfileTransferDetails from a JSON stringgroup_profile_transfer_details_instance=GroupProfileTransferDetails.from_json(json)
# print the JSON string representation of the objectprint(GroupProfileTransferDetails.to_json())
# convert the object into a dictgroup_profile_transfer_details_dict=group_profile_transfer_details_instance.to_dict()
# create an instance of GroupProfileTransferDetails from a dictgroup_profile_transfer_details_from_dict=GroupProfileTransferDetails.from_dict(group_profile_transfer_details_dict)