Rev 21532 | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.res;public class UserWalletHistoryResponse {private int amount;private int reference;private String reference_type;private String sub_reference_type;private long timestamp;private String description;public int getAmount() {return amount;}public void setAmount(int amount) {this.amount = amount;}public int getReference() {return reference;}public void setReference(int reference) {this.reference = reference;}public String getReference_type() {return reference_type;}public void setReference_type(String reference_type) {this.reference_type = reference_type;}public String getSub_reference_type() {return sub_reference_type;}public void setSub_reference_type(String sub_reference_type) {this.sub_reference_type = sub_reference_type;}public long getTimestamp() {return timestamp;}public void setTimestamp(long timestamp) {this.timestamp = timestamp;}public String getDescription() {return description;}public void setDescription(String description) {this.description = description;}}