package monnethic.mobile.transaction; public class SendingTransaction { private String source_user_hash; private String source_user_pwd; private String transaction_from; private String transaction_to; private String transaction_amount; private String transaction_unit; public SendingTransaction() { } public SendingTransaction(String source_user_hash, String source_user_pwd, String transaction_from, String transaction_to, String transaction_amount, String transaction_unit) { this.source_user_hash = source_user_hash; this.source_user_pwd = source_user_pwd; this.transaction_from = transaction_from; this.transaction_to = transaction_to; this.transaction_amount = transaction_amount; this.transaction_unit = transaction_unit; } public String getSource_user_hash() { return source_user_hash; } public void setSource_user_hash(String source_user_hash) { this.source_user_hash = source_user_hash; } public String getSource_user_pwd() { return source_user_pwd; } public void setSource_user_pwd(String source_user_pwd) { this.source_user_pwd = source_user_pwd; } public String getTransaction_from() { return transaction_from; } public void setTransaction_from(String transaction_from) { this.transaction_from = transaction_from; } public String getTransaction_to() { return transaction_to; } public void setTransaction_to(String transaction_to) { this.transaction_to = transaction_to; } public String getTransaction_amount() { return transaction_amount; } public void setTransaction_amount(String transaction_amount) { this.transaction_amount = transaction_amount; } public String getTransaction_unit() { return transaction_unit; } public void setTransaction_unit(String transaction_unit) { this.transaction_unit = transaction_unit; } }