Class CategoryEntity
Namespace: SuperOffice.WebApi.Data
Assembly: SuperOffice.WebApi.dll
Carrier object for CategoryEntity.
Inheritance
object ←
Carrier ←
CategoryEntity
Inherited Members
Carrier.TableRight,
Carrier.FieldProperties,
object.ToString(),
object.Equals(object),
object.Equals(object, object),
object.ReferenceEquals(object, object),
object.GetHashCode(),
object.GetType(),
object.MemberwiseClone()
Examples
Get CategoryEntity 123 using the WebApi client:
var configuration = new WebApiConfiguration(url);
var agent = new ListAgent(configuration);
var categoryEntity = agent.GetCategoryEntity( 123 );
Constructors
CategoryEntity()
Default constructor - defaults any enum props to 0.
Properties
CategoryFamilyId
Optional link to family, for grouping things like multiple kinds of customer category under family ‘customer’
Property Value
int
CategoryGroup
Enum of the group this category belongs to, static list of 5 groups
NULL if unknown enum value.
Property Value
CategoryGroup?
See Also
CategoryEntity.CategoryGroup_String
CategoryGroup_String
Enum of the group this category belongs to, static list of 5 groups
Raw string enum value.
Property Value
string
See Also
CategoryEntity.CategoryGroup
CategoryId
Primary key
Property Value
int
Deleted
true if the category is deleted
Property Value
bool
EnableLeadStatus
True if the category should enable lead status
Property Value
bool
Name
Name of the category
Property Value
string
Rank
Rank of the category
Property Value
short
Tooltip of the category
Property Value
string
See Also
ListAgent