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 in the IBM® FileNet® P8 documentation.

 

Element Structure

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:attribute name="reservationId" type="GuidType"/>
         <xsd:attribute name="reservationType" type="ReservationType"/>	 
      </xsd:extension>
   </xsd:complexContent>
</xsd:complexType>