invite token -> 'invToken' (#820, #834)

This commit is contained in:
Michael Quigley
2025-02-04 11:34:34 -05:00
parent 503dd432c9
commit d2bebc9151
10 changed files with 33 additions and 33 deletions

View File

@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**email** | **str** | | [optional]
**token** | **str** | | [optional]
**inv_token** | **str** | | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -29,23 +29,23 @@ class InviteBody(object):
"""
swagger_types = {
'email': 'str',
'token': 'str'
'inv_token': 'str'
}
attribute_map = {
'email': 'email',
'token': 'token'
'inv_token': 'invToken'
}
def __init__(self, email=None, token=None): # noqa: E501
def __init__(self, email=None, inv_token=None): # noqa: E501
"""InviteBody - a model defined in Swagger""" # noqa: E501
self._email = None
self._token = None
self._inv_token = None
self.discriminator = None
if email is not None:
self.email = email
if token is not None:
self.token = token
if inv_token is not None:
self.inv_token = inv_token
@property
def email(self):
@ -69,25 +69,25 @@ class InviteBody(object):
self._email = email
@property
def token(self):
"""Gets the token of this InviteBody. # noqa: E501
def inv_token(self):
"""Gets the inv_token of this InviteBody. # noqa: E501
:return: The token of this InviteBody. # noqa: E501
:return: The inv_token of this InviteBody. # noqa: E501
:rtype: str
"""
return self._token
return self._inv_token
@token.setter
def token(self, token):
"""Sets the token of this InviteBody.
@inv_token.setter
def inv_token(self, inv_token):
"""Sets the inv_token of this InviteBody.
:param token: The token of this InviteBody. # noqa: E501
:param inv_token: The inv_token of this InviteBody. # noqa: E501
:type: str
"""
self._token = token
self._inv_token = inv_token
def to_dict(self):
"""Returns the model properties as a dict"""