travel.wink.wise.partner.currency.client.WiseCurrencyClient 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.currency.client;
import reactor.core.publisher.Flux;
import travel.wink.wise.partner.credentials.api.CreateAddress;
import travel.wink.wise.partner.credentials.api.WiseUserTokens;
import travel.wink.wise.partner.currency.api.WiseCurrency;
import java.util.Optional;
/**
* The interface Wise currency client.
*/
public interface WiseCurrencyClient {
/**
* Create address flux.
*
* @param twUserTokens the tw user tokens
* @param createAddress the create address
* @return the flux
*/
Flux createAddress(Optional twUserTokens, CreateAddress createAddress);
}