Skip to content

Commit fd1e173

Browse files
Merge pull request #258 from HubSpot/feature/regenerateUsersClient
codegen only
2 parents a01e73f + 570d409 commit fd1e173

21 files changed

+548
-457
lines changed

Diff for: hubspot/settings/users/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# flake8: noqa
44

55
"""
6-
Users
6+
Settings User Provisioning
77
88
Add, manage, and remove users from your account # noqa: E501
99

Diff for: hubspot/settings/users/api/roles_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
Users
4+
Settings User Provisioning
55
66
Add, manage, and remove users from your account # noqa: E501
77

Diff for: hubspot/settings/users/api/teams_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
Users
4+
Settings User Provisioning
55
66
Add, manage, and remove users from your account # noqa: E501
77

Diff for: hubspot/settings/users/api/users_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
Users
4+
Settings User Provisioning
55
66
Add, manage, and remove users from your account # noqa: E501
77

Diff for: hubspot/settings/users/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# coding: utf-8
22
"""
3-
Users
3+
Settings User Provisioning
44
55
Add, manage, and remove users from your account # noqa: E501
66

Diff for: hubspot/settings/users/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
Users
4+
Settings User Provisioning
55
66
Add, manage, and remove users from your account # noqa: E501
77

Diff for: hubspot/settings/users/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
Users
4+
Settings User Provisioning
55
66
Add, manage, and remove users from your account # noqa: E501
77

Diff for: hubspot/settings/users/models/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# flake8: noqa
44
"""
5-
Users
5+
Settings User Provisioning
66
77
Add, manage, and remove users from your account # noqa: E501
88

Diff for: hubspot/settings/users/models/collection_response_public_permission_set_no_paging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
Users
4+
Settings User Provisioning
55
66
Add, manage, and remove users from your account # noqa: E501
77

Diff for: hubspot/settings/users/models/collection_response_public_team_no_paging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
Users
4+
Settings User Provisioning
55
66
Add, manage, and remove users from your account # noqa: E501
77

Diff for: hubspot/settings/users/models/collection_response_public_user_forward_paging.py

+27-27
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
Users
4+
Settings User Provisioning
55
66
Add, manage, and remove users from your account # noqa: E501
77
@@ -35,23 +35,44 @@ class CollectionResponsePublicUserForwardPaging(object):
3535
attribute_map (dict): The key is attribute name
3636
and the value is json key in definition.
3737
"""
38-
openapi_types = {"results": "list[PublicUser]", "paging": "ForwardPaging"}
38+
openapi_types = {"paging": "ForwardPaging", "results": "list[PublicUser]"}
3939

40-
attribute_map = {"results": "results", "paging": "paging"}
40+
attribute_map = {"paging": "paging", "results": "results"}
4141

42-
def __init__(self, results=None, paging=None, local_vars_configuration=None): # noqa: E501
42+
def __init__(self, paging=None, results=None, local_vars_configuration=None): # noqa: E501
4343
"""CollectionResponsePublicUserForwardPaging - a model defined in OpenAPI""" # noqa: E501
4444
if local_vars_configuration is None:
4545
local_vars_configuration = Configuration.get_default_copy()
4646
self.local_vars_configuration = local_vars_configuration
4747

48-
self._results = None
4948
self._paging = None
49+
self._results = None
5050
self.discriminator = None
5151

52-
self.results = results
5352
if paging is not None:
5453
self.paging = paging
54+
self.results = results
55+
56+
@property
57+
def paging(self):
58+
"""Gets the paging of this CollectionResponsePublicUserForwardPaging. # noqa: E501
59+
60+
61+
:return: The paging of this CollectionResponsePublicUserForwardPaging. # noqa: E501
62+
:rtype: ForwardPaging
63+
"""
64+
return self._paging
65+
66+
@paging.setter
67+
def paging(self, paging):
68+
"""Sets the paging of this CollectionResponsePublicUserForwardPaging.
69+
70+
71+
:param paging: The paging of this CollectionResponsePublicUserForwardPaging. # noqa: E501
72+
:type paging: ForwardPaging
73+
"""
74+
75+
self._paging = paging
5576

5677
@property
5778
def results(self):
@@ -76,27 +97,6 @@ def results(self, results):
7697

7798
self._results = results
7899

79-
@property
80-
def paging(self):
81-
"""Gets the paging of this CollectionResponsePublicUserForwardPaging. # noqa: E501
82-
83-
84-
:return: The paging of this CollectionResponsePublicUserForwardPaging. # noqa: E501
85-
:rtype: ForwardPaging
86-
"""
87-
return self._paging
88-
89-
@paging.setter
90-
def paging(self, paging):
91-
"""Sets the paging of this CollectionResponsePublicUserForwardPaging.
92-
93-
94-
:param paging: The paging of this CollectionResponsePublicUserForwardPaging. # noqa: E501
95-
:type paging: ForwardPaging
96-
"""
97-
98-
self._paging = paging
99-
100100
def to_dict(self, serialize=False):
101101
"""Returns the model properties as a dict"""
102102
result = {}

0 commit comments

Comments
 (0)