Source code for azure.mgmt.devtestlabs.models.percentage_cost_threshold_properties

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class PercentageCostThresholdProperties(Model): """Properties of a percentage cost threshold. :param threshold_value: The cost threshold value. :type threshold_value: float """ _attribute_map = { 'threshold_value': {'key': 'thresholdValue', 'type': 'float'}, } def __init__(self, threshold_value=None): super(PercentageCostThresholdProperties, self).__init__() self.threshold_value = threshold_value