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