class Azure::EventGrid::V2018_01_01::Models::MediaLiveEventIncomingStreamsOutOfSyncEventData

Incoming streams out of sync event data.

Attributes

max_last_timestamp[RW]

@return [String] Gets the maximum timestamp among all the tracks (audio or video).

min_last_timestamp[RW]

@return [String] Gets the minimum last timestamp received.

timescale_of_max_last_timestamp[RW]

@return [String] Gets the timescale in which “MaxLastTimestamp” is represented.

timescale_of_min_last_timestamp[RW]

@return [String] Gets the timescale in which “MinLastTimestamp” is represented.

type_of_stream_with_max_last_timestamp[RW]

@return [String] Gets the type of stream with maximum last timestamp.

type_of_stream_with_min_last_timestamp[RW]

@return [String] Gets the type of stream with minimum last timestamp.

Private Class Methods

mapper() click to toggle source

Mapper for MediaLiveEventIncomingStreamsOutOfSyncEventData 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_streams_out_of_sync_event_data.rb, line 42
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'MediaLiveEventIncomingStreamsOutOfSyncEventData',
    type: {
      name: 'Composite',
      class_name: 'MediaLiveEventIncomingStreamsOutOfSyncEventData',
      model_properties: {
        min_last_timestamp: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'minLastTimestamp',
          type: {
            name: 'String'
          }
        },
        type_of_stream_with_min_last_timestamp: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeOfStreamWithMinLastTimestamp',
          type: {
            name: 'String'
          }
        },
        max_last_timestamp: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'maxLastTimestamp',
          type: {
            name: 'String'
          }
        },
        type_of_stream_with_max_last_timestamp: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeOfStreamWithMaxLastTimestamp',
          type: {
            name: 'String'
          }
        },
        timescale_of_min_last_timestamp: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'timescaleOfMinLastTimestamp',
          type: {
            name: 'String'
          }
        },
        timescale_of_max_last_timestamp: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'timescaleOfMaxLastTimestamp',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end