Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/MetricResponse.md
2025-02-20 12:59:19 -05:00

797 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-metric-response MetricResponse MetricResponse MetricResponse pythonsdk
python
Python
sdk
MetricResponse
V2024MetricResponse
/tools/sdk/python/v2024/models/metric-response
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

from sailpoint.v2024.models.metric_response import MetricResponse

metric_response = MetricResponse(
name='',
value=1.337
)

[Back to top]