com.xsolla.sdk.protocol.storage.IUserStorage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
An official PHP SDK for interacting with Xsolla HTTP API.
Xsolla is the authorized reseller and merchant providing e-commerce services for online games.
package com.xsolla.sdk.protocol.storage;
import com.xsolla.sdk.User;
import java.sql.SQLException;
import java.util.HashMap;
public interface IUserStorage {
public boolean isUserExists(User user) throws Exception;
public HashMap getAdditionalUserFields(User user) throws Exception;
}