Advertisement
joris

Visitor

Jul 11th, 2016
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 4.33 KB | None | 0 0
  1. package com.bertho.tdashboard.model;
  2.  
  3. import com.google.gson.annotations.Expose;
  4. import com.google.gson.annotations.SerializedName;
  5.  
  6. public class Visitor {
  7.  
  8.     @SerializedName("nb_uniq_visitors")
  9.     @Expose
  10.     private Integer nbUniqVisitors;
  11.     @SerializedName("nb_users")
  12.     @Expose
  13.     private Integer nbUsers;
  14.     @SerializedName("nb_visits")
  15.     @Expose
  16.     private Integer nbVisits;
  17.     @SerializedName("nb_actions")
  18.     @Expose
  19.     private Integer nbActions;
  20.     @SerializedName("nb_visits_converted")
  21.     @Expose
  22.     private Integer nbVisitsConverted;
  23.     @SerializedName("bounce_count")
  24.     @Expose
  25.     private Integer bounceCount;
  26.     @SerializedName("sum_visit_length")
  27.     @Expose
  28.     private Integer sumVisitLength;
  29.     @SerializedName("max_actions")
  30.     @Expose
  31.     private Integer maxActions;
  32.     @SerializedName("bounce_rate")
  33.     @Expose
  34.     private String bounceRate;
  35.     @SerializedName("nb_actions_per_visit")
  36.     @Expose
  37.     private Double nbActionsPerVisit;
  38.     @SerializedName("avg_time_on_site")
  39.     @Expose
  40.     private Integer avgTimeOnSite;
  41.  
  42.     /**
  43.      * @return The nbUniqVisitors
  44.      */
  45.     public Integer getNbUniqVisitors() {
  46.         return nbUniqVisitors;
  47.     }
  48.  
  49.     /**
  50.      * @param nbUniqVisitors The nb_uniq_visitors
  51.      */
  52.     public void setNbUniqVisitors(Integer nbUniqVisitors) {
  53.         this.nbUniqVisitors = nbUniqVisitors;
  54.     }
  55.  
  56.     /**
  57.      * @return The nbUsers
  58.      */
  59.     public Integer getNbUsers() {
  60.         return nbUsers;
  61.     }
  62.  
  63.     /**
  64.      * @param nbUsers The nb_users
  65.      */
  66.     public void setNbUsers(Integer nbUsers) {
  67.         this.nbUsers = nbUsers;
  68.     }
  69.  
  70.     /**
  71.      * @return The nbVisits
  72.      */
  73.     public Integer getNbVisits() {
  74.         return nbVisits;
  75.     }
  76.  
  77.     /**
  78.      * @param nbVisits The nb_visits
  79.      */
  80.     public void setNbVisits(Integer nbVisits) {
  81.         this.nbVisits = nbVisits;
  82.     }
  83.  
  84.     /**
  85.      * @return The nbActions
  86.      */
  87.     public Integer getNbActions() {
  88.         return nbActions;
  89.     }
  90.  
  91.     /**
  92.      * @param nbActions The nb_actions
  93.      */
  94.     public void setNbActions(Integer nbActions) {
  95.         this.nbActions = nbActions;
  96.     }
  97.  
  98.     /**
  99.      * @return The nbVisitsConverted
  100.      */
  101.     public Integer getNbVisitsConverted() {
  102.         return nbVisitsConverted;
  103.     }
  104.  
  105.     /**
  106.      * @param nbVisitsConverted The nb_visits_converted
  107.      */
  108.     public void setNbVisitsConverted(Integer nbVisitsConverted) {
  109.         this.nbVisitsConverted = nbVisitsConverted;
  110.     }
  111.  
  112.     /**
  113.      * @return The bounceCount
  114.      */
  115.     public Integer getBounceCount() {
  116.         return bounceCount;
  117.     }
  118.  
  119.     /**
  120.      * @param bounceCount The bounce_count
  121.      */
  122.     public void setBounceCount(Integer bounceCount) {
  123.         this.bounceCount = bounceCount;
  124.     }
  125.  
  126.     /**
  127.      * @return The sumVisitLength
  128.      */
  129.     public Integer getSumVisitLength() {
  130.         return sumVisitLength;
  131.     }
  132.  
  133.     /**
  134.      * @param sumVisitLength The sum_visit_length
  135.      */
  136.     public void setSumVisitLength(Integer sumVisitLength) {
  137.         this.sumVisitLength = sumVisitLength;
  138.     }
  139.  
  140.     /**
  141.      * @return The maxActions
  142.      */
  143.     public Integer getMaxActions() {
  144.         return maxActions;
  145.     }
  146.  
  147.     /**
  148.      * @param maxActions The max_actions
  149.      */
  150.     public void setMaxActions(Integer maxActions) {
  151.         this.maxActions = maxActions;
  152.     }
  153.  
  154.     /**
  155.      * @return The bounceRate
  156.      */
  157.     public String getBounceRate() {
  158.         return bounceRate;
  159.     }
  160.  
  161.     /**
  162.      * @param bounceRate The bounce_rate
  163.      */
  164.     public void setBounceRate(String bounceRate) {
  165.         this.bounceRate = bounceRate;
  166.     }
  167.  
  168.     /**
  169.      * @return The nbActionsPerVisit
  170.      */
  171.     public Double getNbActionsPerVisit() {
  172.         return nbActionsPerVisit;
  173.     }
  174.  
  175.     /**
  176.      * @param nbActionsPerVisit The nb_actions_per_visit
  177.      */
  178.     public void setNbActionsPerVisit(Double nbActionsPerVisit) {
  179.         this.nbActionsPerVisit = nbActionsPerVisit;
  180.     }
  181.  
  182.     /**
  183.      * @return The avgTimeOnSite
  184.      */
  185.     public Integer getAvgTimeOnSite() {
  186.         return avgTimeOnSite;
  187.     }
  188.  
  189.     /**
  190.      * @param avgTimeOnSite The avg_time_on_site
  191.      */
  192.     public void setAvgTimeOnSite(Integer avgTimeOnSite) {
  193.         this.avgTimeOnSite = avgTimeOnSite;
  194.     }
  195.  
  196. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement