$(".pipeline-dialog").dialog({
//initial value for custom attribute
customAttribute: "value"
});
//get value
var customAttrValue = $(".pipeline-dialog").dialog("option", "customAttribute");
//set new value
$(".pipeline-dialog").dialog("option", "customAttribute", "new value");