Oracle Beehive
  Oracle® Beehive RESTful Web Services API Reference
  Release 2 (2.0.1.7)
  E16658-04

Contents

Overview

Resource DiscussionsMessageCreator is used to specify the contents of the fields of a new DiscussionsMessage upon creation.

Members

Name Type Description

parentDiscussionsMessageHandle

beeId<discussionsMessage>

The parent DiscussionsMessage of the new DiscussionsMessage. The DiscussionsMessage's parent is actually a Topic; this field is used for threading.

subject

string

The subject and name of the DiscussionsMessage.

updater

discussionsMessageUpdater

The updater used to update the new DiscussionsMessage's fields.

Hierarchy

Inherits From

Examples

Below are examples in JSON and XML formats. All examples are shown with all inherited members. Quoting when required is part of the examples, but you must obviously populate with your own data.

XML Example

(show inherited members)

<obh:discussionsMessageCreator xsi:type="obh:discussionsMessageCreator" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:parentDiscussionsMessageHandle>your_beeId_0</obh:parentDiscussionsMessageHandle>
        <obh:subject>your_string_0</obh:subject>
        <obh:updater>your_discussionsMessageUpdater_0</obh:updater>
</obh:discussionsMessageCreator>

JSON Example

(show inherited members)

{
    "beeType":"discussionsMessageCreator",
        "parentDiscussionsMessageHandle":{ your_{http://www.oracle.com/beehive}parentDiscussionsMessageHandle_as_beeId0 },
        "subject":"your_{http://www.oracle.com/beehive}subject_as_string0",
        "updater":{ your_{http://www.oracle.com/beehive}updater_as_discussionsMessageUpdater0 }
}

XML Schema


<xs:complexType name="discussionsMessageCreator">
    <xs:complexContent>
        <xs:extension base="tns:entityCreator">
            <xs:sequence>
                <xs:element minOccurs="0"
                    name="parentDiscussionsMessageHandle" type="tns:beeId"/>
                <xs:element minOccurs="0" name="subject" type="xs:string"/>
                <xs:element minOccurs="0" name="updater" type="tns:discussionsMessageUpdater"/>
            </xs:sequence>
        </xs:extension>
    </xs:complexContent>
</xs:complexType>

        

References

The following data represents the references to discussionsMessageCreator

Referenced By Resources

Usage Resource Method
Request DiscussionsMessage Create

Referenced By Representaions

Not Referenced Directly by Representations