# DatadogAPIClient::V1::ToplistWidgetDefinition ## Properties | Name | Type | Description | Notes | | ---------------- | ----------------------------------------------------------------- | --------------------------------- | ------------------------------ | | **custom_links** | [**Array<WidgetCustomLink>**](WidgetCustomLink.md) | List of custom links. | [optional] | | **requests** | [**Array<ToplistWidgetRequest>**](ToplistWidgetRequest.md) | List of top list widget requests. | | | **time** | [**WidgetTime**](WidgetTime.md) | | [optional] | | **title** | **String** | Title of your widget. | [optional] | | **title_align** | [**WidgetTextAlign**](WidgetTextAlign.md) | | [optional] | | **title_size** | **String** | Size of the title. | [optional] | | **type** | [**ToplistWidgetDefinitionType**](ToplistWidgetDefinitionType.md) | | [default to 'toplist'] | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::ToplistWidgetDefinition.new( custom_links: null, requests: [{"q":"system.load.1"}], time: null, title: null, title_align: null, title_size: null, type: null ) ```