提交项目

This commit is contained in:
2026-06-15 11:34:31 +08:00
commit 43d6c0125d
5698 changed files with 1236396 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
namespace AppsFlyerSDK
{
public interface IAppsFlyerUserInvite
{
/// <summary>
/// The success callback for generating OneLink URLs.
/// </summary>
/// <param name="link">A string of the newly created url.</param>
void onInviteLinkGenerated(string link);
/// <summary>
/// The error callback for generating OneLink URLs
/// </summary>
/// <param name="error">A string describing the error.</param>
void onInviteLinkGeneratedFailure(string error);
/// <summary>
/// (ios only) iOS allows you to utilize the StoreKit component to open
/// the App Store while remaining in the context of your app.
/// More details at <see>https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions</see>
/// </summary>
/// <param name="link">openStore callback Contains promoted `clickURL`</param>
void onOpenStoreLinkGenerated(string link);
}
}