JobInputHttpResponse

data class JobInputHttpResponse(val baseUri: String? = null, val end: Either<AbsoluteClipTimeResponse, UtcClipTimeResponse>? = null, val files: List<String>? = null, val inputDefinitions: List<Any>? = null, val label: String? = null, val odataType: String, val start: Either<AbsoluteClipTimeResponse, UtcClipTimeResponse>? = null)

Represents HTTPS job input.

Constructors

Link copied to clipboard
constructor(baseUri: String? = null, end: Either<AbsoluteClipTimeResponse, UtcClipTimeResponse>? = null, files: List<String>? = null, inputDefinitions: List<Any>? = null, label: String? = null, odataType: String, start: Either<AbsoluteClipTimeResponse, UtcClipTimeResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val baseUri: String? = null

Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.

Link copied to clipboard

Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.

Link copied to clipboard
val files: List<String>? = null

List of files. Required for JobInputHttp. Maximum of 4000 characters each.

Link copied to clipboard
val inputDefinitions: List<Any>? = null

Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.

Link copied to clipboard
val label: String? = null

A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.

Link copied to clipboard

The discriminator for derived types. Expected value is '#Microsoft.Media.JobInputHttp'.

Link copied to clipboard

Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.