1 package org.kuali.ole.pojo.edi;
2
3 /**
4 * Created with IntelliJ IDEA.
5 * User: palanivel
6 * Date: 7/26/13
7 * Time: 3:54 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class MonetaryInformation {
11
12 private String amountType;
13 private String amount;
14
15 public String getAmountType() {
16 return amountType;
17 }
18
19 public void setAmountType(String amountType) {
20 this.amountType = amountType;
21 }
22
23 public String getAmount() {
24 return amount;
25 }
26
27 public void setAmount(String amount) {
28 this.amount = amount;
29 }
30 }