Loading...
Select Version
Function: |
Reads all the properties of the specified inbound user and returns a dictionary with key-value pairs for the properties. |
Parameters: |
Inbound user whose properties are to be read. |
Return: | Dictionary with key-value pairs for the properties of the inbound user. You can find the possible values for key in Properties of an inbound user . |
Exceptions: |
|
Example: | ... import BcAdminInboundUser import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") user_obj=BcAdminInboundUser.getObject("USR",proxy_obj) userProps=BcAdminInboundUser.getProperties(user_obj) ... |