Advertisement
ballchaichana

responseDetail

Oct 25th, 2018
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. package th.in.oneauthen.api.object;
  2.  
  3. public class responseDetail {
  4.    
  5.     private String status;
  6.     private String timeNow;
  7.     private int timeUse;
  8.    
  9.     public String getStatus() {
  10.         return status;
  11.     }
  12.     public void setStatus(String status) {
  13.         this.status = status;
  14.     }
  15.     public String getTimeNow() {
  16.         return timeNow;
  17.     }
  18.     public void setTimeNow(String timeNow) {
  19.         this.timeNow = timeNow;
  20.     }
  21.     public int getTimeUse() {
  22.         return timeUse;
  23.     }
  24.     public void setTimeUse(int timeUse) {
  25.         this.timeUse = timeUse;
  26.     }
  27.  
  28.  
  29.    
  30.  
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement