All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.robertograham.fortniteapirestclient.service.account.AccountService Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
package io.github.robertograham.fortniteapirestclient.service.account;


import io.github.robertograham.fortniteapirestclient.service.account.model.Account;
import io.github.robertograham.fortniteapirestclient.service.account.model.request.GetAccountsRequest;
import io.github.robertograham.fortniteapirestclient.service.account.model.request.GetAccountRequest;

import java.io.IOException;
import java.util.List;

public interface AccountService {

    Account getAccount(GetAccountRequest getAccountRequest) throws IOException;

    List getAccounts(GetAccountsRequest getAccountsRequest) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy