class Azure::Portal::Mgmt::V2019_01_01_preview::Models::DashboardParts

A dashboard part.

Attributes

metadata[RW]

@return The dashboard part's metadata.

position[RW]

@return [DashboardPartsPosition] The dashboard's part position.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-01-01-preview/generated/azure_mgmt_portal/models/dashboard_parts.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DashboardParts',
    type: {
      name: 'Composite',
      class_name: 'DashboardParts',
      model_properties: {
        position: {
          client_side_validation: true,
          required: true,
          serialized_name: 'position',
          type: {
            name: 'Composite',
            class_name: 'DashboardPartsPosition'
          }
        },
        metadata: {
          client_side_validation: true,
          required: false,
          serialized_name: 'metadata',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ObjectElementType',
                type: {
                  name: 'Object'
                }
            }
          }
        }
      }
    }
  }
end