class Azure::Storage::Mgmt::V2019_06_01::Models::DateAfterCreation

Object to define the number of days after creation.

Attributes

days_after_creation_greater_than[RW]

@return [Float] Value indicating the age in days after creation

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-06-01/generated/azure_mgmt_storage/models/date_after_creation.rb, line 23
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DateAfterCreation',
    type: {
      name: 'Composite',
      class_name: 'DateAfterCreation',
      model_properties: {
        days_after_creation_greater_than: {
          client_side_validation: true,
          required: true,
          serialized_name: 'daysAfterCreationGreaterThan',
          constraints: {
            InclusiveMinimum: 0,
            MultipleOf: 1
          },
          type: {
            name: 'Double'
          }
        }
      }
    }
  }
end