Gets or sets the URL of the post assigned to the machine.
# Get the value of the property.propertyValue = machine_var.postURL# Set the value of the property.machine_var.postURL = propertyValue
#include <Cam/Machine/Machine.h>// Get the value of the property.Ptr<URL> propertyValue = machine_var->postURL();// Set the value of the property, where value_var is a URL.bool returnValue = machine_var->postURL(value_var);