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

1# coding: utf-8 

2 

3""" 

4 Fingerprint Pro Server API 

5 

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 

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 datetime import datetime 

17from datetime import datetime 

18 

19 

20class IdentificationSeenAt(BaseModel): 

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

22 

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 } 

36 

37 attribute_map = { 

38 '_global': 'global', 

39 'subscription': 'subscription' 

40 } 

41 

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 

49 

50 @property 

51 def _global(self) -> datetime: 

52 """Gets the _global of this IdentificationSeenAt. # noqa: E501 

53 

54 

55 :return: The _global of this IdentificationSeenAt. # noqa: E501 

56 """ 

57 return self.__global 

58 

59 @_global.setter 

60 def _global(self, _global: datetime): 

61 """Sets the _global of this IdentificationSeenAt. 

62 

63 

64 :param _global: The _global of this IdentificationSeenAt. # noqa: E501 

65 """ 

66 

67 self.__global = _global 

68 

69 @property 

70 def subscription(self) -> datetime: 

71 """Gets the subscription of this IdentificationSeenAt. # noqa: E501 

72 

73 

74 :return: The subscription of this IdentificationSeenAt. # noqa: E501 

75 """ 

76 return self._subscription 

77 

78 @subscription.setter 

79 def subscription(self, subscription: datetime): 

80 """Sets the subscription of this IdentificationSeenAt. 

81 

82 

83 :param subscription: The subscription of this IdentificationSeenAt. # noqa: E501 

84 """ 

85 

86 self._subscription = subscription 

87