class Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::IncidentBookmarkList

List of incident bookmarks.

Attributes

value[RW]

@return [Array<HuntingBookmark>] Array of incident bookmarks.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/incident_bookmark_list.rb, line 23
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IncidentBookmarkList',
    type: {
      name: 'Composite',
      class_name: 'IncidentBookmarkList',
      model_properties: {
        value: {
          client_side_validation: true,
          required: true,
          serialized_name: 'value',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'HuntingBookmarkElementType',
                type: {
                  name: 'Composite',
                  class_name: 'HuntingBookmark'
                }
            }
          }
        }
      }
    }
  }
end