travel.wink.wise.partner.client.params.Parameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wise-java-sdk Show documentation
Show all versions of wise-java-sdk Show documentation
Spring Boot implementation to TransferWise
The newest version!
package travel.wink.wise.partner.client.params;
/**
* The type Parameter.
*/
public abstract class Parameter {
private final String value;
/**
* Instantiates a new Parameter.
*
* @param value the value
*/
protected Parameter(final String value) {
this.value = value;
}
/**
* Key string.
*
* @return the string
*/
public abstract String key();
/**
* Value string.
*
* @return the string
*/
public String value() {
return value;
}
}