Class CheckoutInfo
Information about the checked-out state of one document, describing whether it is checked out, and to whom.
Namespace: SuperOffice.CRM.Documents
Assembly: SuperOffice.Plugins.dll
Syntax
public class CheckoutInfo : Object
Constructors
CheckoutInfo()
Information about the checked-out state of one document, describing whether it is checked out, and to whom.
Declaration
public CheckoutInfo()
Properties
AssociateId
Id of associate who has currently checked out the document; 0 if it is not checked out, or is checked out by someone who is not a SuperOffice user
Declaration
public int AssociateId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Name
Name of person who has currently checked out the document; blank if it is not checked out. This property may also be blank if the AssociateId is nonzero; NetServer will retrieve the associates' name as needed.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
State
Checkout state
Declaration
public CheckoutState State { get; set; }
Property Value
Type | Description |
---|---|
CheckoutState |
Extension Methods
EnumUtil.MapEnums<From, To>(From)