Class SuggestedDocumentEntity
Carrier object for SuggestedDocumentEntity. Services for the SuggestedDocumentEntity Carrier is available from the Document Agent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.7.0.0")]
public class SuggestedDocumentEntity : Carrier
Examples
Get SuggestedDocumentEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new DocumentAgent();
var suggestedDocumentEntity = agent.GetSuggestedDocumentEntity( 123 );
}
Constructors
SuggestedDocumentEntity()
Default constructor
Declaration
public SuggestedDocumentEntity()
See Also
Properties
Deleted
0 -> record is active 1 -> record is 'deleted' and should not be shown in lists
Declaration
[DataMember]
public virtual bool Deleted { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
DocTmpl
Document template
Declaration
[DataMember]
public virtual DocumentTemplate DocTmpl { get; set; }
Property Value
| Type | Description |
|---|---|
| DocumentTemplate |
See Also
DoctmplId
Type of the suggested document
Declaration
[DataMember]
public virtual int DoctmplId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
Header
Suggested 'header'
Declaration
[DataMember]
public virtual string Header { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Name
Item name, visible in Guide
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
OurRef
Suggested 'our reference'
Declaration
[DataMember]
public virtual string OurRef { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
ProjectTypeStatusLink
Project type and project status link info
Declaration
[DataMember]
public virtual ProjectTypeStatusLink ProjectTypeStatusLink { get; set; }
Property Value
| Type | Description |
|---|---|
| ProjectTypeStatusLink |
See Also
Rank
Rank, controls rank of non-instantiated items in Guide
Declaration
[DataMember]
public virtual short Rank { get; set; }
Property Value
| Type | Description |
|---|---|
| short |
See Also
SaleTypeStageLink
Sale type and stage link info.
Declaration
[DataMember]
public virtual SaleTypeStageLink SaleTypeStageLink { get; set; }
Property Value
| Type | Description |
|---|---|
| SaleTypeStageLink |
See Also
SuggestedDocumentId
Primary key
Declaration
[DataMember]
public virtual int SuggestedDocumentId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
Tooltip
Tooltip / description
Declaration
[DataMember]
public virtual string Tooltip { 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. |
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. |