1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php
namespace Gedcomx\Extensions\FamilySearch\Rs\Client\FamilyTree;
/**
* A basic interface declaring the explicit ability to produce a self URI.
*
* Interface PreferredRelationshipState
*
* @package Gedcomx\Extensions\FamilySearch\Rs\Client\FamilyTree
*/
interface PreferredRelationshipState
{
/**
* Gets the self URI.
*
* @return string
*/
function getSelfUri();
}