class Azure::EventGrid::V2018_01_01::Models::MediaLiveEventIncomingVideoStreamsOutOfSyncEventData

Incoming video stream out of synch event data.

Attributes

first_duration[RW]

@return [String] Gets the duration of the data chunk with first timestamp.

first_timestamp[RW]

@return [String] Gets the first timestamp received for one of the quality levels.

second_duration[RW]

@return [String] Gets the duration of the data chunk with second timestamp.

second_timestamp[RW]

@return [String] Gets the timestamp received for some other quality levels.

timescale[RW]

@return [String] Gets the timescale in which both the timestamps and durations are represented.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-01-01/generated/azure_event_grid/models/media_live_event_incoming_video_streams_out_of_sync_event_data.rb, line 41
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'MediaLiveEventIncomingVideoStreamsOutOfSyncEventData',
    type: {
      name: 'Composite',
      class_name: 'MediaLiveEventIncomingVideoStreamsOutOfSyncEventData',
      model_properties: {
        first_timestamp: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'firstTimestamp',
          type: {
            name: 'String'
          }
        },
        first_duration: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'firstDuration',
          type: {
            name: 'String'
          }
        },
        second_timestamp: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'secondTimestamp',
          type: {
            name: 'String'
          }
        },
        second_duration: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'secondDuration',
          type: {
            name: 'String'
          }
        },
        timescale: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'timescale',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end