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