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

com.launchdarkly.client.CustomEvent Maven / Gradle / Ivy

package com.launchdarkly.client;

import com.google.gson.JsonElement;

class CustomEvent extends Event {
  private final JsonElement data;

  CustomEvent(String key, LDUser user, JsonElement data) {
    super("custom", key, user);
    this.data = data;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy