de.SweetCode.SteamAPI.method.option.options.TimeEndOption 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.method.option.options;
import de.SweetCode.SteamAPI.method.option.Option;
import de.SweetCode.SteamAPI.method.option.OptionTypes;
public class TimeEndOption extends Option {
public TimeEndOption(boolean required) {
super("timeend", "The end of the time range .", OptionTypes.UINT_32, required, false);
}
}