
/**
 * Defines the type of a service object.
 */
export enum ServiceObjectType {

    /**
     * The object is a folder.
     */
    Folder = 0,

    /**
     * The object is an item.
     */
    Item = 1,

    /**
     * Data represents a conversation
     */
    Conversation = 2,

    /**
     * Data represents a persona
     */
    Persona = 3
}