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

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

package com.launchdarkly.client;


class Event {
  Long creationDate;
  String key;
  String kind;
  LDUser user;

  Event(String kind, String key, LDUser user) {
    this.creationDate = System.currentTimeMillis();
    this.key = key;
    this.kind = kind;
    this.user = user;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy