class Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::ErrorCount

The error count details.

Attributes

count[RW]

@return [Integer] The error count.

error_bucket[RW]

@return [String] The error bucket.

truncated[RW]

@return [Boolean] Indicates if the error count is truncated or not.

Private Class Methods

mapper() click to toggle source

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

# File lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/error_count.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ErrorCount',
    type: {
      name: 'Composite',
      class_name: 'ErrorCount',
      model_properties: {
        error_bucket: {
          client_side_validation: true,
          required: false,
          serialized_name: 'errorBucket',
          type: {
            name: 'String'
          }
        },
        count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'count',
          type: {
            name: 'Number'
          }
        },
        truncated: {
          client_side_validation: true,
          required: false,
          serialized_name: 'truncated',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end