class Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::BookmarkExpandParameters

The parameters required to execute an expand operation on the given bookmark.

Attributes

end_time[RW]

@return [DateTime] The end date filter, so the only expansion results returned are before this date.

expansion_id[RW]

@return The Id of the expansion to perform.

start_time[RW]

@return [DateTime] The start date filter, so the only expansion results returned are after this date.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/bookmark_expand_parameters.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'BookmarkExpandParameters',
    type: {
      name: 'Composite',
      class_name: 'BookmarkExpandParameters',
      model_properties: {
        end_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'endTime',
          type: {
            name: 'DateTime'
          }
        },
        expansion_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'expansionId',
          type: {
            name: 'String'
          }
        },
        start_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'startTime',
          type: {
            name: 'DateTime'
          }
        }
      }
    }
  }
end