System.Object
CheckinAction
Client Declaration
public class CheckinAction
Represents a pending action for checking in a document as a new document version. The CheckinAction
pending action can be combined with
a CreateAction
pending action in a single operation. For more information, see the Java™ API Checkin
class and checkin
method topics in the IBM® FileNet® P8 documentation.
Attributes
Boolean
autoClassify
: [request] Optional expression specifying whether
to auto-classify the document during check in (true
) or not (false
).Boolean
checkinMinorVersion
: [request] Optional expression specifying
whether to check in the document as a new minor version
(true
) or as a new major version (false
).Attributes Specific to .NET Clients
Boolean
autoClassifySpecified
: Optional expression specifying whether autoClassify
has a value (true
) or not (false
).Boolean
checkinMinorVersionSpecified
: Optional expression specifying whether checkinMinorVersion
has a value (true
) or not (false
).
CheckinAction objCheckin = new CheckinAction(); objCheckin.checkinMinorVersion = true; objCheckin.checkinMinorVersionSpecified = true;
<xsd:complexType name="CheckinAction"> <xsd:complexContent> <xsd:extension base="ActionType"> <xsd:attribute name="autoClassify" type="xsd:boolean"/> <xsd:attribute name="checkinMinorVersion" type="xsd:boolean"/> </xsd:extension> </xsd:complexContent> </xsd:complexType>