Class CustomObjectMetadata
Bootstrap metadata for a Custom Object table.
Carrier object for CustomObjectMetadata. Services for the CustomObjectMetadata Carrier is available from the CustomObject Agent.Inherited Members
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/12.2.0.0")]
public class CustomObjectMetadata
Constructors
CustomObjectMetadata()
Default constructor
Declaration
public CustomObjectMetadata()
See Also
Properties
FlagHidden
True if the Custom Object is hidden from the navigator.
Declaration
[DataMember]
public virtual bool FlagHidden { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
FlagHideId
True if the primary key field should be hidden in the UI.
Declaration
[DataMember]
public virtual bool FlagHideId { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
FlagShowInFind
True if the Custom Object should appear in the Find dialog.
Declaration
[DataMember]
public virtual bool FlagShowInFind { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
FlagShowInNavigator
True if the Custom Object should appear in the navigator.
Declaration
[DataMember]
public virtual bool FlagShowInNavigator { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
HasWebPanels
True if the Custom Object has web panel archives configured.
Declaration
[DataMember]
public virtual bool HasWebPanels { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
IconHint
Icon hint string for the UI.
Declaration
[DataMember]
public virtual string IconHint { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Name
User-visible name of the Custom Object.
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Relations
Relations to other entities.
Declaration
[DataMember]
public virtual CustomObjectRelation[] Relations { get; set; }
Property Value
| Type | Description |
|---|---|
| CustomObjectRelation[] |
See Also
TableName
Database table name, e.g. 'y_equipment'.
Declaration
[DataMember]
public virtual string TableName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | The carrier contents. |
Overrides
See Also
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
| Type | Name | Description |
|---|---|---|
| string | prefix | The line prefix (typically used for indenting) |
Returns
| Type | Description |
|---|---|
| string | The carrier contents. |