class Azure::Storage::Mgmt::V2019_04_01::Models::DateAfterModification

Object to define the number of days after last modification.

Attributes

days_after_modification_greater_than[RW]

@return [Integer] Integer value indicating the age in days after last modification

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-04-01/generated/azure_mgmt_storage/models/date_after_modification.rb, line 23
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DateAfterModification',
    type: {
      name: 'Composite',
      class_name: 'DateAfterModification',
      model_properties: {
        days_after_modification_greater_than: {
          client_side_validation: true,
          required: true,
          serialized_name: 'daysAfterModificationGreaterThan',
          constraints: {
            InclusiveMinimum: 0
          },
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end