Loading...
Select Version
Function: |
Modifies all the properties of the specified EIS partner that are present in the specified dictionary. |
Parameters: |
EIS partner whose properties are to be modified.
Dictionary with the key-value pairs for the properties that are to be modified. You can find the possible values for key in Properties of an EIS partner . |
Return: | None |
Exceptions: |
|
Example: | ... import BcAdminEisPartner import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") eis_obj=BcAdminEisPartner.getObject("testEIS",proxy_obj) modProps={"desc":"modified"} BcAdminEisPartner.modifyProperties(eis_obj, modProps) ... |