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

com.chargebee.internal.Parameter Maven / Gradle / Ivy

There is a newer version: 3.24.0
Show newest version
package com.chargebee.internal;

import org.json.JSONObject;

import java.util.Map;

public abstract class Parameter {

    String name;

    Object value;

    public void setValue(Object value) {
        this.value = value;
    }

    abstract Map toFormURLEncoded(Map paramsMap);

    abstract JSONObject toJSONBody(JSONObject requestJSON);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy