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
fromopcua_webapi.models.pub_sub_key_push_target_data_typeimportPubSubKeyPushTargetDataType# TODO update the JSON string belowjson="{}"# create an instance of PubSubKeyPushTargetDataType from a JSON stringpub_sub_key_push_target_data_type_instance=PubSubKeyPushTargetDataType.from_json(json)
# print the JSON string representation of the objectprint(PubSubKeyPushTargetDataType.to_json())
# convert the object into a dictpub_sub_key_push_target_data_type_dict=pub_sub_key_push_target_data_type_instance.to_dict()
# create an instance of PubSubKeyPushTargetDataType from a dictpub_sub_key_push_target_data_type_from_dict=PubSubKeyPushTargetDataType.from_dict(pub_sub_key_push_target_data_type_dict)