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