Rev 21680 | Rev 21925 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.request;import com.spice.profitmandi.dao.enumuration.fofo.PaymentOptionType;public class CustomPaymentOption {private PaymentOptionType type;private float amount;public PaymentOptionType getType() {return type;}public void setType(PaymentOptionType type) {this.type = type;}public float getAmount() {return amount;}public void setAmount(float amount) {this.amount = amount;}@Overridepublic String toString() {return "CustomPaymentOption [type=" + type + ", amount=" + amount + "]";}}