Newer Version Available
GameAPIClient
The GameAPIClient class creates a retrofit
instance to invoke REST APIs.
This class extends the NetworkClient abstract class.
Use this constructor to initialize the GameAPIClient class.
1class GameAPIClient constructor(auth: GameAuthenticator, instanceUrl: String) :
2 NetworkClient(auth, instanceUrl)| Parameter | Type | Description | Required or Optional |
|---|---|---|---|
| auth | GameAuthenticator | An instance of the GameAuthenticator interface. | Required |
| instanceUrl | String | The URL of your Salesforce org. | Required |
Methods
getOkHttpClientBuilder
Retrieve an instance of OkHttpClient.
1final OkHttpClient getOkHttpClientBuilder()getNetworkClient
Override the getNetworkClient method of the NetworkClient abstract class to get an instance of GameAPIInterface.
1final GameAPIInterface getNetworkClient()