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

com.heroku.api.AddonChange Maven / Gradle / Ivy

There is a newer version: 0.46
Show newest version
package com.heroku.api;

/**
 * TODO: Javadoc
 *
 * @author Naaman Newbold
 */
public class AddonChange {
    String status;
    String message;
    String price;

    public String getStatus() {
        return status;
    }

    private void setStatus(String status) {
        this.status = status;
    }

    public String getMessage() {
        return message;
    }

    private void setMessage(String message) {
        this.message = message;
    }

    public String getPrice() {
        return price;
    }

    private void setPrice(String price) {
        this.price = price;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy