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 the hash code for the current object.

Public Properties

Name
long installAppTimestamp — The application install time as a timestamp.
string packageName — The application package name.
long receivedTimestamp — The time the referrer data was received as a timestamp.
string referrerId — The referrer identifier.
long? versionCode — The version code of the application, if available.
string? utmCampaign — The campaign name.
string? utmGroup — The ad group name.
string? utmBanner — The 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 The application install time.
  • packageName The application package name.
  • receivedTimestamp The time the referrer data was received.
  • referrerId The referrer identifier.
  • versionCode The version code of the application.
  • utmCampaign The campaign name.
  • utmGroup The ad group name.
  • utmBanner The banner/ad identifier.

function Equals

override bool Equals(
    object obj
)

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

Parameters:

  • obj The object to compare with the current object.

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

function GetHashCode

override int GetHashCode()

Returns the hash code for the current object.

Return: The hash code for the current object.

property installAppTimestamp

long installAppTimestamp;

The application install time as a timestamp.

property packageName

string packageName;

The application package name.

property receivedTimestamp

long receivedTimestamp;

The time the referrer data was received as a timestamp.

property referrerId

string referrerId;

The referrer identifier.

property versionCode

long? versionCode;

The version code of the application, if available.

property utmCampaign

string? utmCampaign;

The campaign name.

property utmGroup

string? utmGroup;

The ad group name.

property utmBanner

string? utmBanner;

The banner/ad identifier.


Назад