001package org.kuali.ole.pojo.edi; 002 003/** 004 * Created with IntelliJ IDEA. 005 * User: palanivel 006 * Date: 7/26/13 007 * Time: 3:54 PM 008 * To change this template use File | Settings | File Templates. 009 */ 010public class MonetaryInformation { 011 012 private String amountType; 013 private String amount; 014 015 public String getAmountType() { 016 return amountType; 017 } 018 019 public void setAmountType(String amountType) { 020 this.amountType = amountType; 021 } 022 023 public String getAmount() { 024 return amount; 025 } 026 027 public void setAmount(String amount) { 028 this.amount = amount; 029 } 030}