public void setFacebookId(string facebookId) { this.facebookId = facebookId; PokktNativeExtension.PerformOperation(PokktOperations.SetFacebookId, facebookId); }
public void setTwitterHandle(string twitterHandle) { this.twitterHandle = twitterHandle; PokktNativeExtension.PerformOperation(PokktOperations.SetTwitterHandle, twitterHandle); }
public void setSkipEnabled(bool skipEnabled) { this.skipEnabled = skipEnabled; PokktNativeExtension.PerformOperation(PokktOperations.SetSkipEnabled, (skipEnabled ? "true" : "false")); }
public void setMaritalStatus(string maritalStatus) { this.maritalStatus = maritalStatus; PokktNativeExtension.PerformOperation(PokktOperations.SetMaritalStatus, maritalStatus); }
public void setThirdPartyUserId(String thirdPartyUserId) { this.thirdPartyUserId = thirdPartyUserId; PokktNativeExtension.PerformOperation(PokktOperations.SetThirdPartyUserId, thirdPartyUserId); }
public static void CheckOfferWallCampaign() { PokktNativeExtension.PerformOperation(PokktOperations.CheckOfferWallCampaign); }
public void setSex(string sex) { this.sex = sex; PokktNativeExtension.PerformOperation(PokktOperations.SetSex, sex); }
public void setEmployment(string employment) { this.employment = employment; PokktNativeExtension.PerformOperation(PokktOperations.SetEmployment, employment); }
public void setName(string name) { this.name = name; PokktNativeExtension.PerformOperation(PokktOperations.SetName, name); }
public void setAge(string age) { this.age = age; PokktNativeExtension.PerformOperation(PokktOperations.SetAge, age); }
public void setBackButtonDisabled(bool backButtonDisabled) { this.backButtonDisabled = backButtonDisabled; PokktNativeExtension.PerformOperation(PokktOperations.SetBackButtonDisabled, (backButtonDisabled ? "true" : "false")); }
public void setCustomSkipMessage(String customSkipMessage) { this.customSkipMessage = customSkipMessage; PokktNativeExtension.PerformOperation(PokktOperations.SetCustomSkipMessage, customSkipMessage); }
public void setDefaultSkipTime(int defaultSkipTime) { this.defaultSkipTime = defaultSkipTime; PokktNativeExtension.PerformOperation(PokktOperations.SetDefaultSkipTime, defaultSkipTime + ""); }
public void setEducation(string education) { this.education = education; PokktNativeExtension.PerformOperation(PokktOperations.SetEducation, education); }
public void setMobileNo(string mobileNo) { this.mobileNo = mobileNo; PokktNativeExtension.PerformOperation(PokktOperations.SetMobileNo, mobileNo); }
public void setNationality(string nationality) { this.nationality = nationality; PokktNativeExtension.PerformOperation(PokktOperations.SetNationality, nationality); }
public void setEmailAddress(string emailAddress) { this.emailAddress = emailAddress; PokktNativeExtension.PerformOperation(PokktOperations.SetEmailAddress, emailAddress); }
public void setMaturityRating(string maturityRating) { this.maturityRating = maturityRating; PokktNativeExtension.PerformOperation(PokktOperations.SetMaturityRating, maturityRating); }
public void setLocation(string location) { this.location = location; PokktNativeExtension.PerformOperation(PokktOperations.SetLocation, location); }
public static void GetPendingCoins() { PokktNativeExtension.PerformOperation(PokktOperations.GetPendingCoins); }
public void setBirthday(string birthday) { this.birthday = birthday; PokktNativeExtension.PerformOperation(PokktOperations.SetBirthday); }
// VIDEO METHODS public static void GetVideo(PokktConfig pokktConfig) { PokktNativeExtension.PerformOperation(PokktOperations.GetVideo, pokktConfig.getScreenName()); }
public void setCloseOnSuccessFlag(bool closeOnSuccessFlag) { this.closeOnSuccessFlag = closeOnSuccessFlag; PokktNativeExtension.PerformOperation(PokktOperations.SetCloseOnSuccessFlag, (closeOnSuccessFlag ? "true" : "false")); }