de.SweetCode.SteamAPI.interfaces.IGameNotificationsService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SteamAPI Show documentation
Show all versions of SteamAPI Show documentation
SteamAPI is a wrapper of the Steam Web API.
package de.SweetCode.SteamAPI.interfaces;
import de.SweetCode.SteamAPI.SteamAPI;
import de.SweetCode.SteamAPI.method.methods.*;
public class IGameNotificationsService extends SteamInterface {
public IGameNotificationsService(SteamAPI steam) {
super(steam, "IGameNotificationsService");
this.add(new CreateSession(this));
this.add(new UpdateSession(this));
this.add(new EnumerateSessionsForApp(this));
this.add(new GetSessionDetailsForApp(this));
this.add(new RequestNotifications(this));
this.add(new DeleteSession(this));
this.add(new DeleteSessionBatch(this));
}
}