Class: Bandwidth::Status2Enum

Inherits:
Object
  • Object
show all
Defined in:
lib/bandwidth/voice_lib/voice/models/status2_enum.rb

Overview

Status2.

Constant Summary collapse

STATUS2_ENUM =
[
  # TODO: Write general description for NONE
  NONE = 'none'.freeze,

  # TODO: Write general description for PROCESSING
  PROCESSING = 'processing'.freeze,

  # TODO: Write general description for AVAILABLE
  AVAILABLE = 'available'.freeze,

  # TODO: Write general description for ERROR
  ERROR = 'error'.freeze,

  # TODO: Write general description for TIMEOUT
  TIMEOUT = 'timeout'.freeze,

  # TODO: Write general description for FILESIZETOOBIG
  FILESIZETOOBIG = 'file-size-too-big'.freeze,

  # TODO: Write general description for FILESIZETOOSMALL
  FILESIZETOOSMALL = 'file-size-too-small'.freeze
].freeze