Class QuoteContext
The context a quote is created in.
Carrier object for QuoteContext. Services for the QuoteContext Carrier is available from the Quote Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.10.0.0")]
public class QuoteContext : Carrier
Constructors
QuoteContext()
Default constructor
Declaration
public QuoteContext()
See Also
Properties
CRMAssociate
The associate (salesman) that is logged into the CRM system.
Declaration
[DataMember]
public virtual Associate CRMAssociate { get; set; }
Property Value
| Type | Description |
|---|---|
| Associate |
See Also
CRMQuoteAlternative
The relevant or current alternative of the quote in the CRM system, if applicable.
Declaration
[DataMember]
public virtual QuoteAlternative CRMQuoteAlternative { get; set; }
Property Value
| Type | Description |
|---|---|
| QuoteAlternative |
See Also
CRMQuoteLine
The relevant or current quote line of the quote in the CRM system, if applicable.
Declaration
[DataMember]
public virtual QuoteLine CRMQuoteLine { get; set; }
Property Value
| Type | Description |
|---|---|
| QuoteLine |
See Also
CRMQuoteVersion
The relevant or current revision of the quote in the CRM system, if applicable.
Declaration
[DataMember]
public virtual QuoteVersion CRMQuoteVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| QuoteVersion |
See Also
CRMSale
The sale the quote is registered in the CRM system.
Declaration
[DataMember]
public virtual Sale CRMSale { get; set; }
Property Value
| Type | Description |
|---|---|
| Sale |
See Also
UserLanguageCode
The iso language code of the language the user is using in the crm system. Use this language when replying, if possible.
Declaration
[DataMember]
public virtual string UserLanguageCode { 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. |