Coverage for fingerprint_pro_server_api_sdk/models/webhook_supplementary_i_ds.py: 59%

32 statements  

« prev     ^ index     » next       coverage.py v7.10.7, created at 2025-09-29 16:25 +0000

1# coding: utf-8 

2 

3""" 

4 Fingerprint Server API 

5 

6 Fingerprint Server API allows you to search, update, and delete identification events in a server environment. It can be used for data exports, decision-making, and data analysis scenarios. Server API is intended for server-side usage, it's not intended to be used from the client side, whether it's a browser or a mobile device. # noqa: E501 

7 

8 OpenAPI spec version: 3 

9 Contact: support@fingerprint.com 

10 Generated by: https://github.com/swagger-api/swagger-codegen.git 

11""" 

12 

13import re # noqa: F401 

14from typing import Dict, List, Optional # noqa: F401 

15from fingerprint_pro_server_api_sdk.base_model import BaseModel 

16from fingerprint_pro_server_api_sdk.models.supplementary_id import SupplementaryID 

17from fingerprint_pro_server_api_sdk.models.supplementary_id import SupplementaryID 

18 

19 

20class WebhookSupplementaryIDs(BaseModel): 

21 """ 

22 Other identities that have been established for a given Visitor. 

23 

24 NOTE: This class is auto generated by the swagger code generator program. 

25 

26 Do not edit the class manually. 

27 """ 

28 """ 

29 Attributes: 

30 swagger_types (dict): The key is attribute name 

31 and the value is attribute type. 

32 attribute_map (dict): The key is attribute name 

33 and the value is json key in definition. 

34 """ 

35 swagger_types = { 

36 'standard': 'SupplementaryID', 

37 'high_recall': 'SupplementaryID' 

38 } 

39 

40 nullable_map = { 

41 'standard': False, 

42 'high_recall': False 

43 } 

44 

45 attribute_map = { 

46 'standard': 'standard', 

47 'high_recall': 'highRecall' 

48 } 

49 

50 def __init__(self, standard=None, high_recall=None): # noqa: E501 

51 """WebhookSupplementaryIDs - a model defined in Swagger""" # noqa: E501 

52 self._standard = None 

53 self._high_recall = None 

54 self.discriminator = None 

55 self.standard = standard 

56 self.high_recall = high_recall 

57 

58 @property 

59 def standard(self) -> SupplementaryID: 

60 """Gets the standard of this WebhookSupplementaryIDs. # noqa: E501 

61 

62 

63 :return: The standard of this WebhookSupplementaryIDs. # noqa: E501 

64 """ 

65 return self._standard 

66 

67 @standard.setter 

68 def standard(self, standard: SupplementaryID): 

69 """Sets the standard of this WebhookSupplementaryIDs. 

70 

71 

72 :param standard: The standard of this WebhookSupplementaryIDs. # noqa: E501 

73 """ 

74 if standard is None: 

75 raise ValueError("Invalid value for `standard`, must not be `None`") # noqa: E501 

76 

77 self._standard = standard 

78 

79 @property 

80 def high_recall(self) -> SupplementaryID: 

81 """Gets the high_recall of this WebhookSupplementaryIDs. # noqa: E501 

82 

83 

84 :return: The high_recall of this WebhookSupplementaryIDs. # noqa: E501 

85 """ 

86 return self._high_recall 

87 

88 @high_recall.setter 

89 def high_recall(self, high_recall: SupplementaryID): 

90 """Sets the high_recall of this WebhookSupplementaryIDs. 

91 

92 

93 :param high_recall: The high_recall of this WebhookSupplementaryIDs. # noqa: E501 

94 """ 

95 if high_recall is None: 

96 raise ValueError("Invalid value for `high_recall`, must not be `None`") # noqa: E501 

97 

98 self._high_recall = high_recall 

99