Class QuoteVersionValidated
The QuoteVersionValidated is returned after a call to ValidateQuoteAlternative. It contains flags indicating changes to quote, quoteversion/quotealternative and quotelines.
Carrier object for QuoteVersionValidated. Services for the QuoteVersionValidated 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.1.0.0")]
public class QuoteVersionValidated : Carrier
Constructors
QuoteVersionValidated()
Default constructor
Declaration
public QuoteVersionValidated()
See Also
Properties
ChangedQuote
The validated version is a member of Quote
Declaration
[DataMember]
public virtual Quote ChangedQuote { get; set; }
Property Value
Type | Description |
---|---|
Quote |
See Also
ChangedQuoteAlternatives
The changed QuoteAlternatives
Declaration
[DataMember]
public virtual QuoteAlternativeRecalculated[] ChangedQuoteAlternatives { get; set; }
Property Value
Type | Description |
---|---|
QuoteAlternativeRecalculated[] |
See Also
ChangedQuoteVersion
The validated QuoteVersion
Declaration
[DataMember]
public virtual QuoteVersion ChangedQuoteVersion { get; set; }
Property Value
Type | Description |
---|---|
QuoteVersion |
See Also
ChangedSale
If the sale has been changed, the carrier will be added.
Declaration
[DataMember]
public virtual Sale ChangedSale { get; set; }
Property Value
Type | Description |
---|---|
Sale |
See Also
ErrorCode
An error code, if available.
Declaration
[DataMember]
public virtual string ErrorCode { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
IsOk
Answer to the question / An indication if the operation went well. Equivalent to Status != Error.
Declaration
[DataMember]
public virtual bool IsOk { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
Status
QuoteStatus = Ok / OkWithInfo / Warn / Error. Error implies IsOk = false.
Declaration
[DataMember]
public virtual QuoteStatus Status { get; set; }
Property Value
Type | Description |
---|---|
QuoteStatus |
See Also
TechExplanation
Always in English
Declaration
[DataMember]
public virtual string TechExplanation { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
UserExplanation
A localized explanation to the answer.
Declaration
[DataMember]
public virtual string UserExplanation { 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. |