Class: Azure::MediaServices::Mgmt::V2020_05_01::Models::LiveEventOutputTranscriptionTrack

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-05-01/generated/azure_mgmt_media_services/models/live_event_output_transcription_track.rb

Overview

Describes a transcription track in the output of a live event, generated using speech-to-text transcription. This property is reserved for future use, any value set on this property will be ignored.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#track_nameString

future use, any value set on this property will be ignored.



19
20
21
# File 'lib/2020-05-01/generated/azure_mgmt_media_services/models/live_event_output_transcription_track.rb', line 19

def track_name
  @track_name
end

Class Method Details

.mapperObject

Mapper for LiveEventOutputTranscriptionTrack class as Ruby Hash. This will be used for serialization/deserialization.



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/2020-05-01/generated/azure_mgmt_media_services/models/live_event_output_transcription_track.rb', line 26

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'LiveEventOutputTranscriptionTrack',
    type: {
      name: 'Composite',
      class_name: 'LiveEventOutputTranscriptionTrack',
      model_properties: {
        track_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'trackName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end