--- id: v2024-metric-response title: MetricResponse pagination_label: MetricResponse sidebar_label: MetricResponse sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'MetricResponse', 'V2024MetricResponse'] slug: /tools/sdk/python/v2024/models/metric-response tags: ['SDK', 'Software Development Kit', 'MetricResponse', 'V2024MetricResponse'] --- # MetricResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **name** | **str** | the name of metric | [optional] **value** | **float** | the value associated to the metric | [optional] } ## Example ```python from sailpoint.v2024.models.metric_response import MetricResponse metric_response = MetricResponse( name='', value=1.337 ) ``` [[Back to top]](#)