BitmovinApiSdk\Models\SimpleEncodingLiveJobStatus

Synopsis

class SimpleEncodingLiveJobStatus extends Enum {
  • // methods
  • public static SimpleEncodingLiveJobStatus create()
  • public static SimpleEncodingLiveJobStatus CREATED()
  • public static SimpleEncodingLiveJobStatus EXECUTING()
  • public static SimpleEncodingLiveJobStatus FAILURE()
  • public static SimpleEncodingLiveJobStatus STARTING()
  • public static SimpleEncodingLiveJobStatus RUNNING()
  • public static SimpleEncodingLiveJobStatus STOPPED()
  • public static SimpleEncodingLiveJobStatus ERROR()
  • public static SimpleEncodingLiveJobStatus CANCELED()
}

Hierarchy

Methods

public

  • CANCELED() — The Simple Encoding Live Job has been executed but the encoding has been canceled manually by the user
  • CREATED() — The Simple Encoding Live Job has been created and is waiting to be executed
  • ERROR() — The Simple Encoding Live Job has been executed but the encoding failed, check the encoding details for more information
  • EXECUTING() — The Simple Encoding Live Job is currently being executed and creating the encoding
  • FAILURE() — The Simple Encoding Live Job could not create the encoding, check the details for more information
  • RUNNING() — The Simple Encoding Live Job has triggered the encoding and is accepting/encoding ingress
  • STARTING() — The Simple Encoding Live Job has triggered the encoding and is currently starting
  • STOPPED() — The Simple Encoding Live Job has been executed and the encoding has finished
  • create()

Inherited from BitmovinApiSdk\Common\Enum

public

  • __callStatic() — Returns a value when called statically like so: MyEnum::SOME_VALUE() given SOME_VALUE is a class constant
  • __toString()
  • equals() — Determines if Enum should be considered equal with the variable passed as a parameter.
  • getKey() — Returns the enum key (i.e. the constant name).
  • getValue()
  • isValidKey() — Check if is valid enum key
  • jsonSerialize() — Specify data which should be serialized to JSON. This method returns data that can be serialized by json_encode() natively.
  • keys() — Returns the names (keys) of all constants in the Enum class
  • toArray() — Returns all possible values as an array
  • values() — Returns instances of the Enum class of all Enum constants