regula-facesdk-webclient 6.4.198.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of regula-facesdk-webclient might be problematic. Click here for more details.

Files changed (133) hide show
  1. regula/__init__.py +0 -0
  2. regula/facesdk/__init__.py +0 -0
  3. regula/facesdk/webclient/__init__.py +15 -0
  4. regula/facesdk/webclient/ext/__init__.py +5 -0
  5. regula/facesdk/webclient/ext/api/__init__.py +3 -0
  6. regula/facesdk/webclient/ext/api/group_api.py +36 -0
  7. regula/facesdk/webclient/ext/api/match_api.py +46 -0
  8. regula/facesdk/webclient/ext/api/person_api.py +46 -0
  9. regula/facesdk/webclient/ext/api/sdk.py +28 -0
  10. regula/facesdk/webclient/ext/api/search_api.py +17 -0
  11. regula/facesdk/webclient/ext/common.py +7 -0
  12. regula/facesdk/webclient/ext/models/__init__.py +6 -0
  13. regula/facesdk/webclient/ext/models/detect_request.py +32 -0
  14. regula/facesdk/webclient/ext/models/match_image.py +19 -0
  15. regula/facesdk/webclient/ext/models/match_request.py +34 -0
  16. regula/facesdk/webclient/gen/__init__.py +27 -0
  17. regula/facesdk/webclient/gen/api/__init__.py +3 -0
  18. regula/facesdk/webclient/gen/api/diagnostics_api.py +162 -0
  19. regula/facesdk/webclient/gen/api/group_api.py +1040 -0
  20. regula/facesdk/webclient/gen/api/healthcheck_api.py +283 -0
  21. regula/facesdk/webclient/gen/api/liveness_2_0_api.py +168 -0
  22. regula/facesdk/webclient/gen/api/liveness_api.py +424 -0
  23. regula/facesdk/webclient/gen/api/match_api.py +463 -0
  24. regula/facesdk/webclient/gen/api/person_api.py +1345 -0
  25. regula/facesdk/webclient/gen/api/search_api.py +177 -0
  26. regula/facesdk/webclient/gen/api_client.py +695 -0
  27. regula/facesdk/webclient/gen/apis/__init__.py +22 -0
  28. regula/facesdk/webclient/gen/configuration.py +446 -0
  29. regula/facesdk/webclient/gen/exceptions.py +159 -0
  30. regula/facesdk/webclient/gen/model/__init__.py +5 -0
  31. regula/facesdk/webclient/gen/model/add_image_to_person_request.py +205 -0
  32. regula/facesdk/webclient/gen/model/add_image_to_person_request_image.py +204 -0
  33. regula/facesdk/webclient/gen/model/add_image_to_person_response.py +262 -0
  34. regula/facesdk/webclient/gen/model/attribute_config.py +120 -0
  35. regula/facesdk/webclient/gen/model/attribute_config_list.py +92 -0
  36. regula/facesdk/webclient/gen/model/crop.py +208 -0
  37. regula/facesdk/webclient/gen/model/detect_request.py +204 -0
  38. regula/facesdk/webclient/gen/model/detect_request_attributes.py +120 -0
  39. regula/facesdk/webclient/gen/model/detect_response.py +147 -0
  40. regula/facesdk/webclient/gen/model/detect_response_all_of.py +120 -0
  41. regula/facesdk/webclient/gen/model/detect_result.py +231 -0
  42. regula/facesdk/webclient/gen/model/detection.py +258 -0
  43. regula/facesdk/webclient/gen/model/detection_attributes.py +148 -0
  44. regula/facesdk/webclient/gen/model/detection_face.py +260 -0
  45. regula/facesdk/webclient/gen/model/detection_quality.py +234 -0
  46. regula/facesdk/webclient/gen/model/device_info.py +231 -0
  47. regula/facesdk/webclient/gen/model/face_align_type_quality.py +109 -0
  48. regula/facesdk/webclient/gen/model/face_attribute.py +133 -0
  49. regula/facesdk/webclient/gen/model/face_image_quality_align_type.py +109 -0
  50. regula/facesdk/webclient/gen/model/face_image_quality_groups.py +118 -0
  51. regula/facesdk/webclient/gen/model/face_image_quality_groups_strings.py +118 -0
  52. regula/facesdk/webclient/gen/model/face_image_quality_status.py +103 -0
  53. regula/facesdk/webclient/gen/model/face_quality_config_name.py +238 -0
  54. regula/facesdk/webclient/gen/model/face_quality_scenarios.py +121 -0
  55. regula/facesdk/webclient/gen/model/face_quality_status.py +103 -0
  56. regula/facesdk/webclient/gen/model/face_rectangular.py +92 -0
  57. regula/facesdk/webclient/gen/model/face_sdk_result.py +121 -0
  58. regula/facesdk/webclient/gen/model/face_sdk_result_code.py +217 -0
  59. regula/facesdk/webclient/gen/model/faces_response.py +286 -0
  60. regula/facesdk/webclient/gen/model/faces_response_all_of.py +148 -0
  61. regula/facesdk/webclient/gen/model/filter_op.py +100 -0
  62. regula/facesdk/webclient/gen/model/filter_search_request.py +176 -0
  63. regula/facesdk/webclient/gen/model/group.py +206 -0
  64. regula/facesdk/webclient/gen/model/group_all_of.py +150 -0
  65. regula/facesdk/webclient/gen/model/group_page.py +178 -0
  66. regula/facesdk/webclient/gen/model/group_page_all_of.py +122 -0
  67. regula/facesdk/webclient/gen/model/group_response.py +150 -0
  68. regula/facesdk/webclient/gen/model/group_to_create.py +180 -0
  69. regula/facesdk/webclient/gen/model/image.py +290 -0
  70. regula/facesdk/webclient/gen/model/image_fields.py +258 -0
  71. regula/facesdk/webclient/gen/model/image_fields_image.py +204 -0
  72. regula/facesdk/webclient/gen/model/image_page.py +176 -0
  73. regula/facesdk/webclient/gen/model/image_page_all_of.py +120 -0
  74. regula/facesdk/webclient/gen/model/image_source.py +115 -0
  75. regula/facesdk/webclient/gen/model/liveness_transaction.py +334 -0
  76. regula/facesdk/webclient/gen/model/liveness_type.py +100 -0
  77. regula/facesdk/webclient/gen/model/match_and_search_request.py +178 -0
  78. regula/facesdk/webclient/gen/model/match_and_search_request_all_of.py +178 -0
  79. regula/facesdk/webclient/gen/model/match_and_search_request_all_of_images.py +148 -0
  80. regula/facesdk/webclient/gen/model/match_and_search_response.py +233 -0
  81. regula/facesdk/webclient/gen/model/match_and_search_response_all_of.py +206 -0
  82. regula/facesdk/webclient/gen/model/match_and_search_response_all_of_detections.py +176 -0
  83. regula/facesdk/webclient/gen/model/match_image.py +205 -0
  84. regula/facesdk/webclient/gen/model/match_image_detection.py +178 -0
  85. regula/facesdk/webclient/gen/model/match_image_result.py +316 -0
  86. regula/facesdk/webclient/gen/model/match_request.py +204 -0
  87. regula/facesdk/webclient/gen/model/match_request_output_image_params.py +148 -0
  88. regula/facesdk/webclient/gen/model/match_request_output_image_params_crop.py +212 -0
  89. regula/facesdk/webclient/gen/model/match_response.py +205 -0
  90. regula/facesdk/webclient/gen/model/match_response_all_of.py +178 -0
  91. regula/facesdk/webclient/gen/model/operation_log.py +206 -0
  92. regula/facesdk/webclient/gen/model/output_image_params.py +146 -0
  93. regula/facesdk/webclient/gen/model/page.py +150 -0
  94. regula/facesdk/webclient/gen/model/person.py +318 -0
  95. regula/facesdk/webclient/gen/model/person_all_of.py +206 -0
  96. regula/facesdk/webclient/gen/model/person_created_response.py +178 -0
  97. regula/facesdk/webclient/gen/model/person_fields.py +234 -0
  98. regula/facesdk/webclient/gen/model/person_to_update_fields.py +206 -0
  99. regula/facesdk/webclient/gen/model/person_with_images.py +346 -0
  100. regula/facesdk/webclient/gen/model/person_with_images_all_of.py +122 -0
  101. regula/facesdk/webclient/gen/model/persons_page.py +176 -0
  102. regula/facesdk/webclient/gen/model/persons_page_all_of.py +120 -0
  103. regula/facesdk/webclient/gen/model/process_param.py +226 -0
  104. regula/facesdk/webclient/gen/model/process_param_attributes.py +120 -0
  105. regula/facesdk/webclient/gen/model/quality_config.py +154 -0
  106. regula/facesdk/webclient/gen/model/quality_config_list.py +92 -0
  107. regula/facesdk/webclient/gen/model/quality_detail.py +234 -0
  108. regula/facesdk/webclient/gen/model/quality_details_groups.py +202 -0
  109. regula/facesdk/webclient/gen/model/quality_request.py +146 -0
  110. regula/facesdk/webclient/gen/model/recognize_image.py +346 -0
  111. regula/facesdk/webclient/gen/model/recognize_image_all_of.py +150 -0
  112. regula/facesdk/webclient/gen/model/resize_options.py +178 -0
  113. regula/facesdk/webclient/gen/model/rgb.py +92 -0
  114. regula/facesdk/webclient/gen/model/search_bad_params.py +172 -0
  115. regula/facesdk/webclient/gen/model/search_detection.py +398 -0
  116. regula/facesdk/webclient/gen/model/search_parameters.py +174 -0
  117. regula/facesdk/webclient/gen/model/search_parameters_create_person.py +177 -0
  118. regula/facesdk/webclient/gen/model/search_person.py +372 -0
  119. regula/facesdk/webclient/gen/model/search_person_all_of.py +148 -0
  120. regula/facesdk/webclient/gen/model/search_request.py +338 -0
  121. regula/facesdk/webclient/gen/model/search_request_all_of.py +178 -0
  122. regula/facesdk/webclient/gen/model/search_result.py +313 -0
  123. regula/facesdk/webclient/gen/model/search_result_all_of.py +122 -0
  124. regula/facesdk/webclient/gen/model/transaction_config.py +92 -0
  125. regula/facesdk/webclient/gen/model/transaction_info.py +344 -0
  126. regula/facesdk/webclient/gen/model/update_group.py +150 -0
  127. regula/facesdk/webclient/gen/model_utils.py +2037 -0
  128. regula/facesdk/webclient/gen/models/__init__.py +96 -0
  129. regula/facesdk/webclient/gen/rest.py +346 -0
  130. regula_facesdk_webclient-6.4.198.dev0.dist-info/METADATA +73 -0
  131. regula_facesdk_webclient-6.4.198.dev0.dist-info/RECORD +133 -0
  132. regula_facesdk_webclient-6.4.198.dev0.dist-info/WHEEL +5 -0
  133. regula_facesdk_webclient-6.4.198.dev0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,204 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Regula FaceSDK Web API
5
+
6
+ [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core # noqa: E501
7
+
8
+ The version of the OpenAPI document: 6.1.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from regula.facesdk.webclient.gen.configuration import Configuration
19
+
20
+
21
+ class ImageFieldsImage(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_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
+ openapi_types = {
36
+ 'content_type': 'str',
37
+ 'content': 'str',
38
+ 'image_url': 'str',
39
+ 'resize_options': 'ResizeOptions',
40
+ }
41
+
42
+ attribute_map = {
43
+ 'content_type': 'contentType',
44
+ 'content': 'content',
45
+ 'image_url': 'imageUrl',
46
+ 'resize_options': 'resizeOptions',
47
+ }
48
+
49
+ def __init__(self, content_type=None, content=None, image_url=None, resize_options=None, local_vars_configuration=None): # noqa: E501
50
+ """ImageFieldsImage - a model defined in OpenAPI""" # noqa: E501
51
+ if local_vars_configuration is None:
52
+ local_vars_configuration = Configuration()
53
+ self.local_vars_configuration = local_vars_configuration
54
+
55
+ self._content_type = None
56
+ self._content = None
57
+ self._image_url = None
58
+ self._resize_options = None
59
+ self.discriminator = None
60
+
61
+ if content_type is not None:
62
+ self.content_type = content_type
63
+ if content is not None:
64
+ self.content = content
65
+ if image_url is not None:
66
+ self.image_url = image_url
67
+ if resize_options is not None:
68
+ self.resize_options = resize_options
69
+
70
+ @property
71
+ def content_type(self):
72
+ """Gets the content_type of this ImageFieldsImage. # noqa: E501
73
+
74
+ Original media type of the uploaded image. # noqa: E501
75
+
76
+ :return: The content_type of this ImageFieldsImage. # noqa: E501
77
+ :rtype: str
78
+ """
79
+ return self._content_type
80
+
81
+ @content_type.setter
82
+ def content_type(self, content_type):
83
+ """Sets the content_type of this ImageFieldsImage.
84
+
85
+ Original media type of the uploaded image. # noqa: E501
86
+
87
+ :param content_type: The content_type of this ImageFieldsImage. # noqa: E501
88
+ :type content_type: str
89
+ """
90
+
91
+ self._content_type = content_type
92
+
93
+ @property
94
+ def content(self):
95
+ """Gets the content of this ImageFieldsImage. # noqa: E501
96
+
97
+ Base64 encoded image. # noqa: E501
98
+
99
+ :return: The content of this ImageFieldsImage. # noqa: E501
100
+ :rtype: str
101
+ """
102
+ return self._content
103
+
104
+ @content.setter
105
+ def content(self, content):
106
+ """Sets the content of this ImageFieldsImage.
107
+
108
+ Base64 encoded image. # noqa: E501
109
+
110
+ :param content: The content of this ImageFieldsImage. # noqa: E501
111
+ :type content: str
112
+ """
113
+
114
+ self._content = content
115
+
116
+ @property
117
+ def image_url(self):
118
+ """Gets the image_url of this ImageFieldsImage. # noqa: E501
119
+
120
+ Image URL. # noqa: E501
121
+
122
+ :return: The image_url of this ImageFieldsImage. # noqa: E501
123
+ :rtype: str
124
+ """
125
+ return self._image_url
126
+
127
+ @image_url.setter
128
+ def image_url(self, image_url):
129
+ """Sets the image_url of this ImageFieldsImage.
130
+
131
+ Image URL. # noqa: E501
132
+
133
+ :param image_url: The image_url of this ImageFieldsImage. # noqa: E501
134
+ :type image_url: str
135
+ """
136
+
137
+ self._image_url = image_url
138
+
139
+ @property
140
+ def resize_options(self):
141
+ """Gets the resize_options of this ImageFieldsImage. # noqa: E501
142
+
143
+
144
+ :return: The resize_options of this ImageFieldsImage. # noqa: E501
145
+ :rtype: ResizeOptions
146
+ """
147
+ return self._resize_options
148
+
149
+ @resize_options.setter
150
+ def resize_options(self, resize_options):
151
+ """Sets the resize_options of this ImageFieldsImage.
152
+
153
+
154
+ :param resize_options: The resize_options of this ImageFieldsImage. # noqa: E501
155
+ :type resize_options: ResizeOptions
156
+ """
157
+
158
+ self._resize_options = resize_options
159
+
160
+ def to_dict(self):
161
+ """Returns the model properties as a dict"""
162
+ result = {}
163
+
164
+ for attr, _ in six.iteritems(self.openapi_types):
165
+ value = getattr(self, attr)
166
+ if isinstance(value, list):
167
+ result[attr] = list(map(
168
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
169
+ value
170
+ ))
171
+ elif hasattr(value, "to_dict"):
172
+ result[attr] = value.to_dict()
173
+ elif isinstance(value, dict):
174
+ result[attr] = dict(map(
175
+ lambda item: (item[0], item[1].to_dict())
176
+ if hasattr(item[1], "to_dict") else item,
177
+ value.items()
178
+ ))
179
+ else:
180
+ result[attr] = value
181
+
182
+ return result
183
+
184
+ def to_str(self):
185
+ """Returns the string representation of the model"""
186
+ return pprint.pformat(self.to_dict())
187
+
188
+ def __repr__(self):
189
+ """For `print` and `pprint`"""
190
+ return self.to_str()
191
+
192
+ def __eq__(self, other):
193
+ """Returns true if both objects are equal"""
194
+ if not isinstance(other, ImageFieldsImage):
195
+ return False
196
+
197
+ return self.to_dict() == other.to_dict()
198
+
199
+ def __ne__(self, other):
200
+ """Returns true if both objects are not equal"""
201
+ if not isinstance(other, ImageFieldsImage):
202
+ return True
203
+
204
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,176 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Regula Face SDK Web API
5
+
6
+ <a href=\"https://regulaforensics.com/products/face-recognition-sdk/ \" target=\"_blank\">Regula Face SDK</a> is a cross-platform biometric verification solution for a digital identity verification process and image quality assurance. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-detection\" target=\"_blank\">Face detection and image quality assessment</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-comparison-11\" target=\"_blank\">Face match (1:1)</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-identification-1n\" target=\"_blank\">Face search (1:N)</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#liveness-assessment\" target=\"_blank\">Liveness detection</a> Here is the <a href=\"https://github.com/regulaforensics/FaceSDK-web-openapi \" target=\"_blank\">OpenAPI specification on GitHub</a>. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core # noqa: E501
7
+
8
+ The version of the OpenAPI document: 6.2.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from regula.facesdk.webclient.gen.configuration import Configuration
19
+
20
+
21
+ class ImagePage(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_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
+ openapi_types = {
36
+ 'page': 'int',
37
+ 'total_pages': 'int',
38
+ 'items': '[Image]',
39
+ }
40
+
41
+ attribute_map = {
42
+ 'page': 'page',
43
+ 'total_pages': 'totalPages',
44
+ 'items': 'items',
45
+ }
46
+
47
+ def __init__(self, page=None, total_pages=None, items=None, local_vars_configuration=None): # noqa: E501
48
+ """ImagePage - a model defined in OpenAPI""" # noqa: E501
49
+ if local_vars_configuration is None:
50
+ local_vars_configuration = Configuration()
51
+ self.local_vars_configuration = local_vars_configuration
52
+
53
+ self._page = None
54
+ self._total_pages = None
55
+ self._items = None
56
+ self.discriminator = None
57
+
58
+ if page is not None:
59
+ self.page = page
60
+ if total_pages is not None:
61
+ self.total_pages = total_pages
62
+ if items is not None:
63
+ self.items = items
64
+
65
+ @property
66
+ def page(self):
67
+ """Gets the page of this ImagePage. # noqa: E501
68
+
69
+ Current page number. # noqa: E501
70
+
71
+ :return: The page of this ImagePage. # noqa: E501
72
+ :rtype: int
73
+ """
74
+ return self._page
75
+
76
+ @page.setter
77
+ def page(self, page):
78
+ """Sets the page of this ImagePage.
79
+
80
+ Current page number. # noqa: E501
81
+
82
+ :param page: The page of this ImagePage. # noqa: E501
83
+ :type page: int
84
+ """
85
+
86
+ self._page = page
87
+
88
+ @property
89
+ def total_pages(self):
90
+ """Gets the total_pages of this ImagePage. # noqa: E501
91
+
92
+ Total number of pages. # noqa: E501
93
+
94
+ :return: The total_pages of this ImagePage. # noqa: E501
95
+ :rtype: int
96
+ """
97
+ return self._total_pages
98
+
99
+ @total_pages.setter
100
+ def total_pages(self, total_pages):
101
+ """Sets the total_pages of this ImagePage.
102
+
103
+ Total number of pages. # noqa: E501
104
+
105
+ :param total_pages: The total_pages of this ImagePage. # noqa: E501
106
+ :type total_pages: int
107
+ """
108
+
109
+ self._total_pages = total_pages
110
+
111
+ @property
112
+ def items(self):
113
+ """Gets the items of this ImagePage. # noqa: E501
114
+
115
+
116
+ :return: The items of this ImagePage. # noqa: E501
117
+ :rtype: [Image]
118
+ """
119
+ return self._items
120
+
121
+ @items.setter
122
+ def items(self, items):
123
+ """Sets the items of this ImagePage.
124
+
125
+
126
+ :param items: The items of this ImagePage. # noqa: E501
127
+ :type items: [Image]
128
+ """
129
+
130
+ self._items = items
131
+
132
+ def to_dict(self):
133
+ """Returns the model properties as a dict"""
134
+ result = {}
135
+
136
+ for attr, _ in six.iteritems(self.openapi_types):
137
+ value = getattr(self, attr)
138
+ if isinstance(value, list):
139
+ result[attr] = list(map(
140
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
141
+ value
142
+ ))
143
+ elif hasattr(value, "to_dict"):
144
+ result[attr] = value.to_dict()
145
+ elif isinstance(value, dict):
146
+ result[attr] = dict(map(
147
+ lambda item: (item[0], item[1].to_dict())
148
+ if hasattr(item[1], "to_dict") else item,
149
+ value.items()
150
+ ))
151
+ else:
152
+ result[attr] = value
153
+
154
+ return result
155
+
156
+ def to_str(self):
157
+ """Returns the string representation of the model"""
158
+ return pprint.pformat(self.to_dict())
159
+
160
+ def __repr__(self):
161
+ """For `print` and `pprint`"""
162
+ return self.to_str()
163
+
164
+ def __eq__(self, other):
165
+ """Returns true if both objects are equal"""
166
+ if not isinstance(other, ImagePage):
167
+ return False
168
+
169
+ return self.to_dict() == other.to_dict()
170
+
171
+ def __ne__(self, other):
172
+ """Returns true if both objects are not equal"""
173
+ if not isinstance(other, ImagePage):
174
+ return True
175
+
176
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,120 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Regula Face SDK Web API
5
+
6
+ <a href=\"https://regulaforensics.com/products/face-recognition-sdk/ \" target=\"_blank\">Regula Face SDK</a> is a cross-platform biometric verification solution for a digital identity verification process and image quality assurance. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-detection\" target=\"_blank\">Face detection and image quality assessment</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-comparison-11\" target=\"_blank\">Face match (1:1)</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-identification-1n\" target=\"_blank\">Face search (1:N)</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#liveness-assessment\" target=\"_blank\">Liveness detection</a> Here is the <a href=\"https://github.com/regulaforensics/FaceSDK-web-openapi \" target=\"_blank\">OpenAPI specification on GitHub</a>. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core # noqa: E501
7
+
8
+ The version of the OpenAPI document: 6.2.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from regula.facesdk.webclient.gen.configuration import Configuration
19
+
20
+
21
+ class ImagePageAllOf(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_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
+ openapi_types = {
36
+ 'items': '[Image]',
37
+ }
38
+
39
+ attribute_map = {
40
+ 'items': 'items',
41
+ }
42
+
43
+ def __init__(self, items=None, local_vars_configuration=None): # noqa: E501
44
+ """ImagePageAllOf - a model defined in OpenAPI""" # noqa: E501
45
+ if local_vars_configuration is None:
46
+ local_vars_configuration = Configuration()
47
+ self.local_vars_configuration = local_vars_configuration
48
+
49
+ self._items = None
50
+ self.discriminator = None
51
+
52
+ if items is not None:
53
+ self.items = items
54
+
55
+ @property
56
+ def items(self):
57
+ """Gets the items of this ImagePageAllOf. # noqa: E501
58
+
59
+
60
+ :return: The items of this ImagePageAllOf. # noqa: E501
61
+ :rtype: [Image]
62
+ """
63
+ return self._items
64
+
65
+ @items.setter
66
+ def items(self, items):
67
+ """Sets the items of this ImagePageAllOf.
68
+
69
+
70
+ :param items: The items of this ImagePageAllOf. # noqa: E501
71
+ :type items: [Image]
72
+ """
73
+
74
+ self._items = items
75
+
76
+ def to_dict(self):
77
+ """Returns the model properties as a dict"""
78
+ result = {}
79
+
80
+ for attr, _ in six.iteritems(self.openapi_types):
81
+ value = getattr(self, attr)
82
+ if isinstance(value, list):
83
+ result[attr] = list(map(
84
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
85
+ value
86
+ ))
87
+ elif hasattr(value, "to_dict"):
88
+ result[attr] = value.to_dict()
89
+ elif isinstance(value, dict):
90
+ result[attr] = dict(map(
91
+ lambda item: (item[0], item[1].to_dict())
92
+ if hasattr(item[1], "to_dict") else item,
93
+ value.items()
94
+ ))
95
+ else:
96
+ result[attr] = value
97
+
98
+ return result
99
+
100
+ def to_str(self):
101
+ """Returns the string representation of the model"""
102
+ return pprint.pformat(self.to_dict())
103
+
104
+ def __repr__(self):
105
+ """For `print` and `pprint`"""
106
+ return self.to_str()
107
+
108
+ def __eq__(self, other):
109
+ """Returns true if both objects are equal"""
110
+ if not isinstance(other, ImagePageAllOf):
111
+ return False
112
+
113
+ return self.to_dict() == other.to_dict()
114
+
115
+ def __ne__(self, other):
116
+ """Returns true if both objects are not equal"""
117
+ if not isinstance(other, ImagePageAllOf):
118
+ return True
119
+
120
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,115 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Regula Face SDK Web API
5
+
6
+ <a href=\"https://regulaforensics.com/products/face-recognition-sdk/ \" target=\"_blank\">Regula Face SDK</a> is a cross-platform biometric verification solution for a digital identity verification process and image quality assurance. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-detection\" target=\"_blank\">Face detection and image quality assessment</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-comparison-11\" target=\"_blank\">Face match (1:1)</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-identification-1n\" target=\"_blank\">Face search (1:N)</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#liveness-assessment\" target=\"_blank\">Liveness detection</a> Here is the <a href=\"https://github.com/regulaforensics/FaceSDK-web-openapi \" target=\"_blank\">OpenAPI specification on GitHub</a>. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core # noqa: E501
7
+
8
+ The version of the OpenAPI document: 6.2.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from regula.facesdk.webclient.gen.configuration import Configuration
19
+
20
+
21
+ class ImageSource(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ ""
29
+ DOCUMENT_PRINTED = int(1)
30
+
31
+ ""
32
+ DOCUMENT_RFID = int(2)
33
+
34
+ ""
35
+ LIVE = int(3)
36
+
37
+ ""
38
+ DOCUMENT_WITH_LIVE = int(4)
39
+
40
+ ""
41
+ EXTERNAL = int(5)
42
+
43
+ ""
44
+ GHOST = int(6)
45
+
46
+ ""
47
+ BARCODE = int(7)
48
+
49
+ allowable_values = [DOCUMENT_PRINTED, DOCUMENT_RFID, LIVE, DOCUMENT_WITH_LIVE, EXTERNAL, GHOST, BARCODE] # noqa: E501
50
+
51
+ """
52
+ Attributes:
53
+ openapi_types (dict): The key is attribute name
54
+ and the value is attribute type.
55
+ attribute_map (dict): The key is attribute name
56
+ and the value is json key in definition.
57
+ """
58
+ openapi_types = {
59
+ }
60
+
61
+ attribute_map = {
62
+ }
63
+
64
+ def __init__(self, local_vars_configuration=None): # noqa: E501
65
+ """ImageSource - a model defined in OpenAPI""" # noqa: E501
66
+ if local_vars_configuration is None:
67
+ local_vars_configuration = Configuration()
68
+ self.local_vars_configuration = local_vars_configuration
69
+ self.discriminator = None
70
+
71
+ def to_dict(self):
72
+ """Returns the model properties as a dict"""
73
+ result = {}
74
+
75
+ for attr, _ in six.iteritems(self.openapi_types):
76
+ value = getattr(self, attr)
77
+ if isinstance(value, list):
78
+ result[attr] = list(map(
79
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
80
+ value
81
+ ))
82
+ elif hasattr(value, "to_dict"):
83
+ result[attr] = value.to_dict()
84
+ elif isinstance(value, dict):
85
+ result[attr] = dict(map(
86
+ lambda item: (item[0], item[1].to_dict())
87
+ if hasattr(item[1], "to_dict") else item,
88
+ value.items()
89
+ ))
90
+ else:
91
+ result[attr] = value
92
+
93
+ return result
94
+
95
+ def to_str(self):
96
+ """Returns the string representation of the model"""
97
+ return pprint.pformat(self.to_dict())
98
+
99
+ def __repr__(self):
100
+ """For `print` and `pprint`"""
101
+ return self.to_str()
102
+
103
+ def __eq__(self, other):
104
+ """Returns true if both objects are equal"""
105
+ if not isinstance(other, ImageSource):
106
+ return False
107
+
108
+ return self.to_dict() == other.to_dict()
109
+
110
+ def __ne__(self, other):
111
+ """Returns true if both objects are not equal"""
112
+ if not isinstance(other, ImageSource):
113
+ return True
114
+
115
+ return self.to_dict() != other.to_dict()