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
« prev ^ index » next coverage.py v7.10.7, created at 2025-09-29 16:25 +0000
1# coding: utf-8
3"""
4 Fingerprint Server API
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
8 OpenAPI spec version: 3
9 Contact: support@fingerprint.com
10 Generated by: https://github.com/swagger-api/swagger-codegen.git
11"""
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
20class WebhookSupplementaryIDs(BaseModel):
21 """
22 Other identities that have been established for a given Visitor.
24 NOTE: This class is auto generated by the swagger code generator program.
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 }
40 nullable_map = {
41 'standard': False,
42 'high_recall': False
43 }
45 attribute_map = {
46 'standard': 'standard',
47 'high_recall': 'highRecall'
48 }
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
58 @property
59 def standard(self) -> SupplementaryID:
60 """Gets the standard of this WebhookSupplementaryIDs. # noqa: E501
63 :return: The standard of this WebhookSupplementaryIDs. # noqa: E501
64 """
65 return self._standard
67 @standard.setter
68 def standard(self, standard: SupplementaryID):
69 """Sets the standard of this WebhookSupplementaryIDs.
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
77 self._standard = standard
79 @property
80 def high_recall(self) -> SupplementaryID:
81 """Gets the high_recall of this WebhookSupplementaryIDs. # noqa: E501
84 :return: The high_recall of this WebhookSupplementaryIDs. # noqa: E501
85 """
86 return self._high_recall
88 @high_recall.setter
89 def high_recall(self, high_recall: SupplementaryID):
90 """Sets the high_recall of this WebhookSupplementaryIDs.
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
98 self._high_recall = high_recall