Class CustomObjectRelation
Describes a relation from a Custom Object to another entity.
Carrier object for CustomObjectRelation. Services for the CustomObjectRelation 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 CustomObjectRelation
Constructors
CustomObjectRelation()
Default constructor
Declaration
public CustomObjectRelation()
See Also
Properties
DisplayField
Database column name of the display field for the related entity.
Declaration
[DataMember]
public virtual string DisplayField { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
EntityName
Database table name of the related entity.
Declaration
[DataMember]
public virtual string EntityName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
EntityTitle
User-visible title of the related entity.
Declaration
[DataMember]
public virtual string EntityTitle { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
EntityType
Type of the related entity, e.g. 'contact', 'CustomObject'.
Declaration
[DataMember]
public virtual string EntityType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
HideFunctions
True if the functions (add/edit/delete) should be hidden for this relation.
Declaration
[DataMember]
public virtual bool HideFunctions { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
ProviderName
Archive provider name for listing related rows.
Declaration
[DataMember]
public virtual string ProviderName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
RelationField
Database column name of the foreign key field.
Declaration
[DataMember]
public virtual string RelationField { 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. |