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

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

There is a newer version: 1.3.9
Show newest version
package com.symphony.bdk.bot.sdk.event.model;

import lombok.Data;
import lombok.NoArgsConstructor;
import model.events.RoomDeactivated;

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

  private StreamDetails stream;

  public RoomDeactivatedEvent(RoomDeactivated event) {
    this.streamId = event.getStream().getStreamId();
    this.stream = new StreamDetails(event.getStream());
  }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy