class Azure::Redis::Mgmt::V2017_10_01::Models::NotificationListResponse

The response of listUpgradeNotifications.

Attributes

value[RW]

@return [Array<UpgradeNotification>] List of all notifications.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-10-01/generated/azure_mgmt_redis/models/notification_list_response.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NotificationListResponse',
    type: {
      name: 'Composite',
      class_name: 'NotificationListResponse',
      model_properties: {
        value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'value',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'UpgradeNotificationElementType',
                type: {
                  name: 'Composite',
                  class_name: 'UpgradeNotification'
                }
            }
          }
        },
        next_link: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'nextLink',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end