Sha256: c32f92d0939f98c1f13b08634d7516336e3a134d53ffdba5abafcc742f966249

Contents?: true

Size: 1.11 KB

Versions: 11

Compression:

Stored size: 1.11 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 BroadcastLayout
    GALLERY = "gallery".freeze
    ACTIVE_SPEAKER = "active-speaker".freeze
    CROP = "crop".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 = BroadcastLayout.constants.select { |c| BroadcastLayout::const_get(c) == value }
      raise "Invalid ENUM value #{value} for class #BroadcastLayout" if constantValues.empty?
      value
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
mux_ruby-3.20.0 lib/mux_ruby/models/broadcast_layout.rb
mux_ruby-3.19.0 lib/mux_ruby/models/broadcast_layout.rb
mux_ruby-3.18.0 lib/mux_ruby/models/broadcast_layout.rb
mux_ruby-3.17.0 lib/mux_ruby/models/broadcast_layout.rb
mux_ruby-3.15.0 lib/mux_ruby/models/broadcast_layout.rb
mux_ruby-3.14.0 lib/mux_ruby/models/broadcast_layout.rb
mux_ruby-3.13.0 lib/mux_ruby/models/broadcast_layout.rb
mux_ruby-3.12.0 lib/mux_ruby/models/broadcast_layout.rb
mux_ruby-3.11.1 lib/mux_ruby/models/broadcast_layout.rb
mux_ruby-3.11.0 lib/mux_ruby/models/broadcast_layout.rb
mux_ruby-3.9.0 lib/mux_ruby/models/broadcast_layout.rb