UserIms¶
-
class
oci.identity_domains.models.
UserIms
(**kwargs)¶ Bases:
object
User’s instant messaging addresses
Attributes
TYPE_AIM
A constant which can be used with the type property of a UserIms. TYPE_GTALK
A constant which can be used with the type property of a UserIms. TYPE_ICQ
A constant which can be used with the type property of a UserIms. TYPE_MSN
A constant which can be used with the type property of a UserIms. TYPE_QQ
A constant which can be used with the type property of a UserIms. TYPE_SKYPE
A constant which can be used with the type property of a UserIms. TYPE_XMPP
A constant which can be used with the type property of a UserIms. TYPE_YAHOO
A constant which can be used with the type property of a UserIms. display
Gets the display of this UserIms. primary
Gets the primary of this UserIms. type
[Required] Gets the type of this UserIms. value
[Required] Gets the value of this UserIms. Methods
__init__
(**kwargs)Initializes a new UserIms object with values from keyword arguments. -
TYPE_AIM
= 'aim'¶ A constant which can be used with the type property of a UserIms. This constant has a value of “aim”
-
TYPE_GTALK
= 'gtalk'¶ A constant which can be used with the type property of a UserIms. This constant has a value of “gtalk”
-
TYPE_ICQ
= 'icq'¶ A constant which can be used with the type property of a UserIms. This constant has a value of “icq”
-
TYPE_MSN
= 'msn'¶ A constant which can be used with the type property of a UserIms. This constant has a value of “msn”
-
TYPE_QQ
= 'qq'¶ A constant which can be used with the type property of a UserIms. This constant has a value of “qq”
-
TYPE_SKYPE
= 'skype'¶ A constant which can be used with the type property of a UserIms. This constant has a value of “skype”
-
TYPE_XMPP
= 'xmpp'¶ A constant which can be used with the type property of a UserIms. This constant has a value of “xmpp”
-
TYPE_YAHOO
= 'yahoo'¶ A constant which can be used with the type property of a UserIms. This constant has a value of “yahoo”
-
__init__
(**kwargs)¶ Initializes a new UserIms object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - value (str) – The value to assign to the value property of this UserIms.
- display (str) – The value to assign to the display property of this UserIms.
- type (str) – The value to assign to the type property of this UserIms. Allowed values for this property are: “aim”, “gtalk”, “icq”, “xmpp”, “msn”, “skype”, “qq”, “yahoo”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- primary (bool) – The value to assign to the primary property of this UserIms.
-
display
¶ Gets the display of this UserIms. A human-readable name, primarily used for display purposes
- SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
Returns: The display of this UserIms. Return type: str
-
primary
¶ Gets the primary of this UserIms. A Boolean value that indicates the ‘primary’ or preferred attribute value for this attribute–for example, the preferred messenger or primary messenger. The primary attribute value ‘true’ MUST appear no more than once.
- SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
Returns: The primary of this UserIms. Return type: bool
-
type
¶ [Required] Gets the type of this UserIms. A label that indicates the attribute’s function–for example, ‘aim’, ‘gtalk’, or ‘mobile’
- SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
Allowed values for this property are: “aim”, “gtalk”, “icq”, “xmpp”, “msn”, “skype”, “qq”, “yahoo”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this UserIms. Return type: str
-
value
¶ [Required] Gets the value of this UserIms. User’s instant messaging address
- SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
Returns: The value of this UserIms. Return type: str
-