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

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

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

import lombok.Data;
import lombok.NoArgsConstructor;
import model.Stream;

/**
 * Symphony IM created event
 *
 * @author Marcus Secato
 */
@Data
@NoArgsConstructor
public class IMCreatedEvent extends BaseEvent {

  private StreamDetails stream;

  public IMCreatedEvent(Stream stream) {
    this.streamId = stream.getStreamId();
    this.stream = new StreamDetails(stream);
  }

}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy