@@ -46,7 +46,7 @@ class EmailAccountConfig(object):
4646 """
4747 swagger_types = {
4848 'display_name' : 'str' ,
49- 'type ' : 'str' ,
49+ 'protocol_type ' : 'str' ,
5050 'host' : 'str' ,
5151 'port' : 'int' ,
5252 'socket_type' : 'str' ,
@@ -57,7 +57,7 @@ class EmailAccountConfig(object):
5757
5858 attribute_map = {
5959 'display_name' : 'displayName' ,
60- 'type ' : 'type ' ,
60+ 'protocol_type ' : 'protocolType ' ,
6161 'host' : 'host' ,
6262 'port' : 'port' ,
6363 'socket_type' : 'socketType' ,
@@ -66,11 +66,11 @@ class EmailAccountConfig(object):
6666 'is_validated' : 'isValidated'
6767 }
6868
69- def __init__ (self , display_name : str = None , type : str = None , host : str = None , port : int = None , socket_type : str = None , authentication_types : List [str ] = None , extra_info : List [NameValuePair ] = None , is_validated : bool = None ):
69+ def __init__ (self , display_name : str = None , protocol_type : str = None , host : str = None , port : int = None , socket_type : str = None , authentication_types : List [str ] = None , extra_info : List [NameValuePair ] = None , is_validated : bool = None ):
7070 """EmailAccountConfig - a model defined in Swagger"""
7171
7272 self ._display_name = None
73- self ._type = None
73+ self ._protocol_type = None
7474 self ._host = None
7575 self ._port = None
7676 self ._socket_type = None
@@ -81,8 +81,8 @@ def __init__(self, display_name: str = None, type: str = None, host: str = None,
8181
8282 if display_name is not None :
8383 self .display_name = display_name
84- if type is not None :
85- self .type = type
84+ if protocol_type is not None :
85+ self .protocol_type = protocol_type
8686 if host is not None :
8787 self .host = host
8888 if port is not None :
@@ -119,28 +119,28 @@ def display_name(self, display_name: str):
119119 self ._display_name = display_name
120120
121121 @property
122- def type (self ) -> str :
123- """Gets the type of this EmailAccountConfig.
122+ def protocol_type (self ) -> str :
123+ """Gets the protocol_type of this EmailAccountConfig.
124124
125125 Type of connection protocol. Enum, available values: IMAP, POP3, SMTP, EWS, WebDav
126126
127- :return: The type of this EmailAccountConfig.
127+ :return: The protocol_type of this EmailAccountConfig.
128128 :rtype: str
129129 """
130- return self ._type
130+ return self ._protocol_type
131131
132- @type .setter
133- def type (self , type : str ):
134- """Sets the type of this EmailAccountConfig.
132+ @protocol_type .setter
133+ def protocol_type (self , protocol_type : str ):
134+ """Sets the protocol_type of this EmailAccountConfig.
135135
136136 Type of connection protocol. Enum, available values: IMAP, POP3, SMTP, EWS, WebDav
137137
138- :param type : The type of this EmailAccountConfig.
138+ :param protocol_type : The protocol_type of this EmailAccountConfig.
139139 :type: str
140140 """
141- if type is None :
142- raise ValueError ("Invalid value for `type `, must not be `None`" )
143- self ._type = type
141+ if protocol_type is None :
142+ raise ValueError ("Invalid value for `protocol_type `, must not be `None`" )
143+ self ._protocol_type = protocol_type
144144
145145 @property
146146 def host (self ) -> str :
@@ -190,7 +190,7 @@ def port(self, port: int):
190190 def socket_type (self ) -> str :
191191 """Gets the socket_type of this EmailAccountConfig.
192192
193- Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
193+ Security mode for a mail client Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
194194
195195 :return: The socket_type of this EmailAccountConfig.
196196 :rtype: str
@@ -201,7 +201,7 @@ def socket_type(self) -> str:
201201 def socket_type (self , socket_type : str ):
202202 """Sets the socket_type of this EmailAccountConfig.
203203
204- Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
204+ Security mode for a mail client Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
205205
206206 :param socket_type: The socket_type of this EmailAccountConfig.
207207 :type: str
0 commit comments