Advertisement
Guest User

Rates

a guest
Sep 1st, 2018
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.80 KB | None | 0 0
  1. package bjd.adrian.gson;
  2.  
  3. import com.google.gson.annotations.Expose;
  4. import com.google.gson.annotations.SerializedName;
  5.  
  6. public class Rates
  7. {
  8.     @SerializedName("no")
  9.     @Expose
  10.     private String no;
  11.     @SerializedName("effectiveDate")
  12.     @Expose
  13.     private String effectiveDate;
  14.     @SerializedName("mid")
  15.     @Expose
  16.     private Double mid;
  17.  
  18.     public String getNo() {
  19.         return no;
  20.     }
  21.  
  22.     public void setNo(String no) {
  23.         this.no = no;
  24.     }
  25.  
  26.     public String getEffectiveDate() {
  27.         return effectiveDate;
  28.     }
  29.  
  30.     public void setEffectiveDate(String effectiveDate) {
  31.         this.effectiveDate = effectiveDate;
  32.     }
  33.  
  34.     public Double getMid() {
  35.         return mid;
  36.     }
  37.  
  38.     public void setMid(Double mid) {
  39.         this.mid = mid;
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement