Ejemplo n.º 1
0
 public void setFacebookId(string facebookId)
 {
     this.facebookId = facebookId;
     PokktNativeExtension.PerformOperation(PokktOperations.SetFacebookId, facebookId);
 }
Ejemplo n.º 2
0
 public void setTwitterHandle(string twitterHandle)
 {
     this.twitterHandle = twitterHandle;
     PokktNativeExtension.PerformOperation(PokktOperations.SetTwitterHandle, twitterHandle);
 }
Ejemplo n.º 3
0
 public void setSkipEnabled(bool skipEnabled)
 {
     this.skipEnabled = skipEnabled;
     PokktNativeExtension.PerformOperation(PokktOperations.SetSkipEnabled, (skipEnabled ? "true" : "false"));
 }
Ejemplo n.º 4
0
 public void setMaritalStatus(string maritalStatus)
 {
     this.maritalStatus = maritalStatus;
     PokktNativeExtension.PerformOperation(PokktOperations.SetMaritalStatus, maritalStatus);
 }
Ejemplo n.º 5
0
 public void setThirdPartyUserId(String thirdPartyUserId)
 {
     this.thirdPartyUserId = thirdPartyUserId;
     PokktNativeExtension.PerformOperation(PokktOperations.SetThirdPartyUserId, thirdPartyUserId);
 }
Ejemplo n.º 6
0
 public static void CheckOfferWallCampaign()
 {
     PokktNativeExtension.PerformOperation(PokktOperations.CheckOfferWallCampaign);
 }
Ejemplo n.º 7
0
 public void setSex(string sex)
 {
     this.sex = sex;
     PokktNativeExtension.PerformOperation(PokktOperations.SetSex, sex);
 }
Ejemplo n.º 8
0
 public void setEmployment(string employment)
 {
     this.employment = employment;
     PokktNativeExtension.PerformOperation(PokktOperations.SetEmployment, employment);
 }
Ejemplo n.º 9
0
 public void setName(string name)
 {
     this.name = name;
     PokktNativeExtension.PerformOperation(PokktOperations.SetName, name);
 }
Ejemplo n.º 10
0
 public void setAge(string age)
 {
     this.age = age;
     PokktNativeExtension.PerformOperation(PokktOperations.SetAge, age);
 }
Ejemplo n.º 11
0
 public void setBackButtonDisabled(bool backButtonDisabled)
 {
     this.backButtonDisabled = backButtonDisabled;
     PokktNativeExtension.PerformOperation(PokktOperations.SetBackButtonDisabled, (backButtonDisabled ? "true" : "false"));
 }
Ejemplo n.º 12
0
 public void setCustomSkipMessage(String customSkipMessage)
 {
     this.customSkipMessage = customSkipMessage;
     PokktNativeExtension.PerformOperation(PokktOperations.SetCustomSkipMessage, customSkipMessage);
 }
Ejemplo n.º 13
0
 public void setDefaultSkipTime(int defaultSkipTime)
 {
     this.defaultSkipTime = defaultSkipTime;
     PokktNativeExtension.PerformOperation(PokktOperations.SetDefaultSkipTime, defaultSkipTime + "");
 }
Ejemplo n.º 14
0
 public void setEducation(string education)
 {
     this.education = education;
     PokktNativeExtension.PerformOperation(PokktOperations.SetEducation, education);
 }
Ejemplo n.º 15
0
 public void setMobileNo(string mobileNo)
 {
     this.mobileNo = mobileNo;
     PokktNativeExtension.PerformOperation(PokktOperations.SetMobileNo, mobileNo);
 }
Ejemplo n.º 16
0
 public void setNationality(string nationality)
 {
     this.nationality = nationality;
     PokktNativeExtension.PerformOperation(PokktOperations.SetNationality, nationality);
 }
Ejemplo n.º 17
0
 public void setEmailAddress(string emailAddress)
 {
     this.emailAddress = emailAddress;
     PokktNativeExtension.PerformOperation(PokktOperations.SetEmailAddress, emailAddress);
 }
Ejemplo n.º 18
0
 public void setMaturityRating(string maturityRating)
 {
     this.maturityRating = maturityRating;
     PokktNativeExtension.PerformOperation(PokktOperations.SetMaturityRating, maturityRating);
 }
Ejemplo n.º 19
0
 public void setLocation(string location)
 {
     this.location = location;
     PokktNativeExtension.PerformOperation(PokktOperations.SetLocation, location);
 }
Ejemplo n.º 20
0
 public static void GetPendingCoins()
 {
     PokktNativeExtension.PerformOperation(PokktOperations.GetPendingCoins);
 }
Ejemplo n.º 21
0
 public void setBirthday(string birthday)
 {
     this.birthday = birthday;
     PokktNativeExtension.PerformOperation(PokktOperations.SetBirthday);
 }
Ejemplo n.º 22
0
        // VIDEO METHODS

        public static void GetVideo(PokktConfig pokktConfig)
        {
            PokktNativeExtension.PerformOperation(PokktOperations.GetVideo, pokktConfig.getScreenName());
        }
Ejemplo n.º 23
0
 public void setCloseOnSuccessFlag(bool closeOnSuccessFlag)
 {
     this.closeOnSuccessFlag = closeOnSuccessFlag;
     PokktNativeExtension.PerformOperation(PokktOperations.SetCloseOnSuccessFlag, (closeOnSuccessFlag ? "true" : "false"));
 }