namespace BO.AppServer.Metadata.Enums
{
public enum StatisticsScopeEnums
{
///
/// Without limitations
///
All,
///
/// Current day only
///
Current,
}
public enum UserScopeEnums
{
///
/// Without limitations
///
All,
///
/// Locked users only
///
Locked,
///
/// System users only
///
System
}
public enum BPlanScopeEnums
{
///
/// Without limitations
///
All,
///
/// Custom specific billing plans
///
Custom,
///
/// Hidden billing plan
///
Hidden
}
public enum MimeTypeScopeEnums
{
///
/// Without limitations
///
All,
}
public enum BillingPlanScopeEnums
{
///
/// Without limitations
///
All,
}
public enum WorkspaceScopeEnums
{
///
/// Without limitations
///
All,
Empty,
NotEmpty,
My
}
public enum DocumentsScopeEnums
{
///
/// Without limitations
///
All,
///
/// Only pending documents
///
Pending,
///
/// Only working documents
///
Working,
///
/// Only working documents
///
Done,
///
/// Only Failed documents
///
Failed,
}
}