CheckinAction Element

System.Object
  ActionType
    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.

Element Structure

Attributes
  • Boolean autoClassify: [request] Optional expression that specifies whether to auto-classify the document during check-in (true) or not (false).
  • Boolean checkinMinorVersion: [request] Optional expression that specifies 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 that specifies whether autoClassify has a value (true) or not (false).
  • Boolean checkinMinorVersionSpecified: Optional expression that specifies whether checkinMinorVersion has a value (true) or not (false).

Code Example

CheckinAction objCheckin = new CheckinAction();
objCheckin.checkinMinorVersion = true;
objCheckin.checkinMinorVersionSpecified = true;

XML Schema

<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>