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

com.cosmicpush.pub.common.PushTraits Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package com.cosmicpush.pub.common;

import java.util.Map;

public class PushTraits {

  private final String domainKey;
  private final String pushRequestId;
  private final Map traits;

  public PushTraits(String pushRequestId, String domainKey, Map traits) {
    this.traits = traits;
    this.domainKey = domainKey;
    this.pushRequestId = pushRequestId;
  }

  public String getDomainKey() {
    return domainKey;
  }

  public String getPushRequestId() {
    return pushRequestId;
  }

  public Map getTraits() {
    return traits;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy