# 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 .property_value_py3 import PropertyValue
[docs]class DoublePropertyValue(PropertyValue):
"""Describes a Service Fabric property value of type Double.
All required parameters must be populated in order to send to Azure.
:param kind: Required. Constant filled by server.
:type kind: str
:param data: Required. The data of the property value.
:type data: float
"""
_validation = {
'kind': {'required': True},
'data': {'required': True},
}
_attribute_map = {
'kind': {'key': 'Kind', 'type': 'str'},
'data': {'key': 'Data', 'type': 'float'},
}
def __init__(self, *, data: float, **kwargs) -> None:
super(DoublePropertyValue, self).__init__(**kwargs)
self.data = data
self.kind = 'Double'