
io.gs2.cdk.core.model.NotificationSetting Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gs2-java-cdk Show documentation
Show all versions of gs2-java-cdk Show documentation
Game Server Services CDK for Java
The newest version!
package io.gs2.cdk.core.model;
import java.util.HashMap;
import java.util.Map;
public class NotificationSetting {
String gatewayNamespaceId;
Boolean enableTransferMobileNotification;
String sound;
public NotificationSetting(
) {
}
public Map properties() {
return new HashMap<>() {
{
put("GatewayNamespaceId", gatewayNamespaceId);
put("EnableTransferMobileNotification", enableTransferMobileNotification);
put("Sound", sound);
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy