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

com.symphony.bdk.bot.sdk.event.model.ConnectionRequestedEvent Maven / Gradle / Ivy

package com.symphony.bdk.bot.sdk.event.model;

import lombok.Data;
import lombok.NoArgsConstructor;
import model.User;

/**
 * Symphony Connection request received event
 * 
 * @author anthony.lee
 */
@Data
@NoArgsConstructor
public class ConnectionRequestedEvent extends BaseEvent{
  private Long userId;

  public ConnectionRequestedEvent(User user) {
    this.userId = user.getUserId();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy