Coverage for fingerprint_pro_server_api_sdk/models/error.py: 90%

30 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 fingerprint_pro_server_api_sdk.models.error_code import ErrorCode 

17 

18 

19class Error(BaseModel): 

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

21 

22 Do not edit the class manually. 

23 """ 

24 """ 

25 Attributes: 

26 swagger_types (dict): The key is attribute name 

27 and the value is attribute type. 

28 attribute_map (dict): The key is attribute name 

29 and the value is json key in definition. 

30 """ 

31 swagger_types = { 

32 'code': 'ErrorCode', 

33 'message': 'str' 

34 } 

35 

36 attribute_map = { 

37 'code': 'code', 

38 'message': 'message' 

39 } 

40 

41 def __init__(self, code=None, message=None): # noqa: E501 

42 """Error - a model defined in Swagger""" # noqa: E501 

43 self._code = None 

44 self._message = None 

45 self.discriminator = None 

46 self.code = code 

47 self.message = message 

48 

49 @property 

50 def code(self) -> ErrorCode: 

51 """Gets the code of this Error. # noqa: E501 

52 

53 

54 :return: The code of this Error. # noqa: E501 

55 """ 

56 return self._code 

57 

58 @code.setter 

59 def code(self, code: ErrorCode): 

60 """Sets the code of this Error. 

61 

62 

63 :param code: The code of this Error. # noqa: E501 

64 """ 

65 if code is None: 

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

67 

68 self._code = code 

69 

70 @property 

71 def message(self) -> str: 

72 """Gets the message of this Error. # noqa: E501 

73 

74 

75 :return: The message of this Error. # noqa: E501 

76 """ 

77 return self._message 

78 

79 @message.setter 

80 def message(self, message: str): 

81 """Sets the message of this Error. 

82 

83 

84 :param message: The message of this Error. # noqa: E501 

85 """ 

86 if message is None: 

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

88 

89 self._message = message 

90