cc:type

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Describes type of presentity.

Syntax

<type>...</type>

Attributes

None

Parent Element

Element

Description

cc:identity

The element holding the identity of a user.

Child Elements

None

Remarks

Note

This element is introduced in Microsoft Office Communicator 2007 R2 release. This element can take "person", "huntgroup", "autoattendant", and "automaton" as the possible values to specify the type of a presentity. This element should be between the delimiter and end tags so that the XML is backwards compatible.

The following are definitions for the types of presentities.

  • person
    A human end user.

  • huntgroup
    A “bot” that does not ever directly interact with the caller. It passes calls through to a person immediately. This is largely equivalent to Office Communicator’s team call.

  • autoattendant
    A “bot” that connects the user to another person after first interacting with the user directly.

  • automaton
    A “bot” that can interact with the user directly. This bot does not necessarily ever connect the caller to another person.

Examples

XML Example of the type Element

  <contactCard xmlns="http://schemas.microsoft.com/2006/09/sip/contactcard">
    <company>Contoso, LTD.</company>
    <title>Lead Program Manager</title>
    <office>Redmond</office>
    <phone type="mobile">
      <uri>1234567890</uri>
      <displayString>1234567890</displayString>
    </phone>
    <phone type="home">
      <uri>1234567890</uri>
      <displayString>1234567890</displayString>
    </phone>
    <delimiter xmlns="http://schemas.microsoft.com/2006/09/sip/commontypes" />
    <type>automaton</type>
    <description>Fully automated account management system</description>
    <end xmlns="http://schemas.microsoft.com/2006/09/sip/commontypes" />
  </contactCard>