All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gs2.cdk.core.model.NotificationSetting Maven / Gradle / Ivy

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