Coverage for fingerprint_pro_server_api_sdk/models/identification_seen_at.py: 100%
27 statements
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-09 17:50 +0000
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-09 17:50 +0000
1# coding: utf-8
3"""
4 Fingerprint Pro Server API
6 Fingerprint Pro Server API allows you to get information about visitors and about individual 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 datetime import datetime
17from datetime import datetime
20class IdentificationSeenAt(BaseModel):
21 """NOTE: This class is auto generated by the swagger code generator program.
23 Do not edit the class manually.
24 """
25 """
26 Attributes:
27 swagger_types (dict): The key is attribute name
28 and the value is attribute type.
29 attribute_map (dict): The key is attribute name
30 and the value is json key in definition.
31 """
32 swagger_types = {
33 '_global': 'datetime',
34 'subscription': 'datetime'
35 }
37 attribute_map = {
38 '_global': 'global',
39 'subscription': 'subscription'
40 }
42 def __init__(self, _global=None, subscription=None): # noqa: E501
43 """IdentificationSeenAt - a model defined in Swagger""" # noqa: E501
44 self.__global = None
45 self._subscription = None
46 self.discriminator = None
47 self._global = _global
48 self.subscription = subscription
50 @property
51 def _global(self) -> datetime:
52 """Gets the _global of this IdentificationSeenAt. # noqa: E501
55 :return: The _global of this IdentificationSeenAt. # noqa: E501
56 """
57 return self.__global
59 @_global.setter
60 def _global(self, _global: datetime):
61 """Sets the _global of this IdentificationSeenAt.
64 :param _global: The _global of this IdentificationSeenAt. # noqa: E501
65 """
67 self.__global = _global
69 @property
70 def subscription(self) -> datetime:
71 """Gets the subscription of this IdentificationSeenAt. # noqa: E501
74 :return: The subscription of this IdentificationSeenAt. # noqa: E501
75 """
76 return self._subscription
78 @subscription.setter
79 def subscription(self, subscription: datetime):
80 """Sets the subscription of this IdentificationSeenAt.
83 :param subscription: The subscription of this IdentificationSeenAt. # noqa: E501
84 """
86 self._subscription = subscription