# DatadogAPIClient::V1::ChangeWidgetDefinition ## Properties | Name | Type | Description | Notes | | ---------------- | --------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------- | | **custom_links** | [**Array<WidgetCustomLink>**](WidgetCustomLink.md) | List of custom links. | [optional] | | **requests** | [**Array<ChangeWidgetRequest>**](ChangeWidgetRequest.md) | Array of one request object to display in the widget. See the dedicated [Request JSON schema documentation](https://docs.datadoghq.com/dashboards/graphing_json/request_json) to learn how to build the `REQUEST_SCHEMA`. | | | **time** | [**WidgetTime**](WidgetTime.md) | | [optional] | | **title** | **String** | Title of the widget. | [optional] | | **title_align** | [**WidgetTextAlign**](WidgetTextAlign.md) | | [optional] | | **title_size** | **String** | Size of the title. | [optional] | | **type** | [**ChangeWidgetDefinitionType**](ChangeWidgetDefinitionType.md) | | [default to 'change'] | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::ChangeWidgetDefinition.new( custom_links: null, requests: [{"q/apm_query/log_query":"<METRIC_1>{<SCOPE_1>}"}], time: null, title: null, title_align: null, title_size: null, type: null ) ```