/** * Flamenco manager * Render Farm manager API * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. * */ import ApiClient from '../ApiClient'; /** * Enum class SocketIOSubscriptionOperation. * @enum {} * @readonly */ export default class SocketIOSubscriptionOperation { /** * value: "subscribe" * @const */ "subscribe" = "subscribe"; /** * value: "unsubscribe" * @const */ "unsubscribe" = "unsubscribe"; /** * Returns a SocketIOSubscriptionOperation enum value from a Javascript object name. * @param {Object} data The plain JavaScript object containing the name of the enum value. * @return {module:model/SocketIOSubscriptionOperation} The enum SocketIOSubscriptionOperation value. */ static constructFromObject(object) { return object; } }