internal static RelatedLinkImpl GetInstance([CallerMemberName] string callerName = "")
        {
            JToken json = new JObject();

            JsonSource(ref json);
            var instance = (RelatedLinkImpl)RelatedLinkImpl.FromToken(json);

            InstanceFactory(ref instance, callerName);
            return(instance);
        }
 static partial void InstanceFactory(ref RelatedLinkImpl instance, [CallerMemberName] string callerName = "");