System.Object
CheckoutAction
Client Declaration
public class CheckoutAction
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.
Attributes
GuidType
reservationId
: [request] Optional expression specifying a new GUID string to be assigned to the reservation Document
object created by CheckoutAction
,
thus overriding its original ID.ReservationType
reservationType
: [request] Optional expression specifying the type
of reservation to be created: collaborative or exclusive. Attributes Specific to .NET Clients
reservationTypeSpecified
: Optional expression specifying whether reservationType
has a value (true
) or not (false
).
CheckoutAction objCheckout = new CheckoutAction(); objCheckout.reservationType = ReservationType.Exclusive;
<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>