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