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

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

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

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

/**
 * Symphony Room reactivated event
 *
 * @author Marcus Secato
 */
@Data
@NoArgsConstructor
public class RoomReactivatedEvent extends BaseEvent {

  public StreamDetails stream;

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy