Source code for azure.cognitiveservices.vision.face.models.makeup_py3

# 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 Makeup(Model): """Properties describing present makeups on a given face. :param eye_makeup: A boolean value describing whether eye makeup is present on a face. :type eye_makeup: bool :param lip_makeup: A boolean value describing whether lip makeup is present on a face. :type lip_makeup: bool """ _attribute_map = { 'eye_makeup': {'key': 'eyeMakeup', 'type': 'bool'}, 'lip_makeup': {'key': 'lipMakeup', 'type': 'bool'}, } def __init__(self, *, eye_makeup: bool=None, lip_makeup: bool=None, **kwargs) -> None: super(Makeup, self).__init__(**kwargs) self.eye_makeup = eye_makeup self.lip_makeup = lip_makeup