/// <summary> /// If a container type, /// attempts to locate the int64 at the end of the given path. /// </summary> /// <see cref="Locate(string)"/> /// <param name="path">A dot seperated path to the int64.</param> public long?LocateInt64(string path) { DiscordApiData data = Locate(path); return(data?.ToInt64()); }