Show / Hide Table of Contents

Class SuggestedDocumentEntity

Carrier object for SuggestedDocumentEntity. Services for the SuggestedDocumentEntity Carrier is available from the Document Agent.

Inheritance
object
SuggestedDocumentEntity
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
IDocumentAgent

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
IDocumentAgent

DocTmpl

Document template

Declaration
[DataMember]
public virtual DocumentTemplate DocTmpl { get; set; }
Property Value
Type Description
DocumentTemplate
See Also
IDocumentAgent

DoctmplId

Type of the suggested document

Declaration
[DataMember]
public virtual int DoctmplId { get; set; }
Property Value
Type Description
int
See Also
IDocumentAgent

Header

Suggested 'header'

Declaration
[DataMember]
public virtual string Header { get; set; }
Property Value
Type Description
string
See Also
IDocumentAgent

Name

Item name, visible in Guide

Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type Description
string
See Also
IDocumentAgent

OurRef

Suggested 'our reference'

Declaration
[DataMember]
public virtual string OurRef { get; set; }
Property Value
Type Description
string
See Also
IDocumentAgent

ProjectTypeStatusLink

Project type and project status link info

Declaration
[DataMember]
public virtual ProjectTypeStatusLink ProjectTypeStatusLink { get; set; }
Property Value
Type Description
ProjectTypeStatusLink
See Also
IDocumentAgent

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
IDocumentAgent

SaleTypeStageLink

Sale type and stage link info.

Declaration
[DataMember]
public virtual SaleTypeStageLink SaleTypeStageLink { get; set; }
Property Value
Type Description
SaleTypeStageLink
See Also
IDocumentAgent

SuggestedDocumentId

Primary key

Declaration
[DataMember]
public virtual int SuggestedDocumentId { get; set; }
Property Value
Type Description
int
See Also
IDocumentAgent

Tooltip

Tooltip / description

Declaration
[DataMember]
public virtual string Tooltip { get; set; }
Property Value
Type Description
string
See Also
IDocumentAgent

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

See Also
IDocumentAgent

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.

See Also
IDocumentAgent

See Also

IDocumentAgent
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top