API/Autodoc/Classes/RuStore.UnityInstallReferrer.InstallReferrer.en.md


Public Functions

Name
InstallReferrer(long installAppTimestamp, string packageName, long receivedTimestamp, string referrerId, long? versionCode, string? utmCampaign =null, string? utmGroup =null, string? utmBanner =null)
Initializes a new instance of the InstallReferrer class.
override bool Equals(object obj)
Compares the current object with another object of the same type.
override int GetHashCode()
Returns a hash code for the current object.

Public Properties

Name
long installAppTimestamp — App installation time as a timestamp.
string packageName — Application package name.
long receivedTimestamp — Time when referrer data was received as a timestamp.
string referrerId — Referrer ID.
long? versionCode — Application version code, if available.
string? utmCampaign — Campaign name.
string? utmGroup — Ad group name.
string? utmBanner — Banner/ad identifier.

function InstallReferrer

InstallReferrer(
    long installAppTimestamp,
    string packageName,
    long receivedTimestamp,
    string referrerId,
    long? versionCode,
    string? utmCampaign =null,
    string? utmGroup =null,
    string? utmBanner =null
)

Initializes a new instance of the InstallReferrer class.

Parameters:

  • installAppTimestamp App installation time.
  • packageName Application package name.
  • receivedTimestamp Time when referrer data was received.
  • referrerId Referrer ID.
  • versionCode Application version code.
  • utmCampaign Campaign name.
  • utmGroup Ad group name.
  • utmBanner Banner/ad identifier.

function Equals

override bool Equals(
    object obj
)

Compares the current object with another object of the same type.

Parameters:

  • obj An object to compare with the current object.

Return: true if the objects are equal; otherwise false.

function GetHashCode

override int GetHashCode()

Returns a hash code for the current object.

Return: A hash code for the current object.

property installAppTimestamp

long installAppTimestamp;

App installation time as a timestamp.

property packageName

string packageName;

Application package name.

property receivedTimestamp

long receivedTimestamp;

Time when referrer data was received as a timestamp.

property referrerId

string referrerId;

Referrer ID.

property versionCode

long? versionCode;

Application version code, if available.

property utmCampaign

string? utmCampaign;

Campaign name.

property utmGroup

string? utmGroup;

Ad group name.

property utmBanner

string? utmBanner;

Banner/ad identifier.


Назад