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
how to use following function of this class and which classname should be give as first parameter?
public static function from_dict($clsname, $d)
{
// Extend Field.from_dict and also load the name from the dict.
$relationship = PiplApi_Field::from_dict('PiplApi_Relationship', $d);
if (!empty($relationship->name))
{
$relationship->name = PiplApi_Field::from_dict('PiplApi_Name', $relationship->name);
}
return $relationship;
}
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
I am getting relationship data using
but how can I get the type of relation.
how to use following function of this class and which classname should be give as first parameter?
Thanks
The text was updated successfully, but these errors were encountered: