travel.wink.wise.partner.client.params.Code 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 Code.
*/
public final class Code extends Parameter {
/**
* Instantiates a new Code.
*
* @param code the code
*/
public Code(final String code) {
super(code);
}
@Override
public String key() {
return "code";
}
}