CheckoutAction Element

System.Object

ActionType

CheckoutAction

 

Client Declaration

Represents a pending action for checking out a document. When a document is checked out, the Content Engine creates a new reservation document object that can be modified and checked in as a new version of the document. This reservation object can be accessed from the original document's Reservation property. For more information, see the Java™ API Checkout class and checkout method topics.

 

Element Structure

Elements

Attributes

Attributes Specific to .NET Clients

 

Code Example

CheckoutAction objCheckout = new CheckoutAction();
objCheckout.reservationType = ReservationType.Exclusive;

 

XML Schema

<xsd:complexType name="CheckoutAction">
   <xsd:complexContent>
      <xsd:extension base="ActionType">
         <xsd:sequence>
            <xsd:element minOccurs="0" name="ReservationProperties" type="ModifiedPropertiesType"/>
         </xsd:sequence>			   
         <xsd:attribute name="reservationId" type="GuidType"/>
         <xsd:attribute name="reservationType" type="ReservationType"/>
         <xsd:attribute name="reservationClass" type="xsd:string"/>		 
      </xsd:extension>
   </xsd:complexContent>
</xsd:complexType>