Sha256: e5f8578e1f795786b42e934251fcc38f12d41849d99f62d26ef2a51a38104b85
Contents?: true
Size: 1.06 KB
Versions: 17
Compression:
Stored size: 1.06 KB
Contents
=begin #Mux API #Mux is how developers build online video. This API encompasses both Mux Video and Mux Data functionality to help you build your video-related projects better and faster than ever before. The version of the OpenAPI document: v1 Contact: devex@mux.com Generated by: https://openapi-generator.tech OpenAPI Generator version: 5.0.1 =end require 'date' require 'time' module MuxRuby class BroadcastStatus IDLE = "idle".freeze ACTIVE = "active".freeze # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def self.build_from_hash(value) new.build_from_hash(value) end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def build_from_hash(value) constantValues = BroadcastStatus.constants.select { |c| BroadcastStatus::const_get(c) == value } raise "Invalid ENUM value #{value} for class #BroadcastStatus" if constantValues.empty? value end end end
Version data entries
17 entries across 17 versions & 1 rubygems