All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liberologico.cloudesire.cmw.model.dto.ResellerPricingPatchDTO Maven / Gradle / Ivy

The newest version!
package com.liberologico.cloudesire.cmw.model.dto;

import javax.validation.constraints.NotNull;
import java.math.BigDecimal;

public class ResellerPricingPatchDTO extends DTO
{
    @NotNull
    private Action action;

    private BigDecimal percentage;

    public ResellerPricingPatchDTO( Action action )
    {
        this.action = action;
    }

    public ResellerPricingPatchDTO()
    {
    }

    public Action getAction()
    {
        return action;
    }

    public void setAction( Action action )
    {
        this.action = action;
    }

    public BigDecimal getPercentage()
    {
        return percentage;
    }

    public void setPercentage( BigDecimal percentage )
    {
        this.percentage = percentage;
    }

    public enum Action
    {
        MASS_UPDATE_CLOUD_PRICINGS
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy