//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
using System.Xml.Serialization;
//
// This source code was auto-generated by xsd, Version=4.7.3081.0.
//
///
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.7.3081.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
[System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
public partial class DisplayResponse {
private ResultType overallResultField;
private int requestIdField;
private string valueField;
///
[System.Xml.Serialization.XmlAttributeAttribute()]
public ResultType OverallResult {
get {
return this.overallResultField;
}
set {
this.overallResultField = value;
}
}
///
[System.Xml.Serialization.XmlAttributeAttribute()]
public int RequestId {
get {
return this.requestIdField;
}
set {
this.requestIdField = value;
}
}
///
[System.Xml.Serialization.XmlTextAttribute()]
public string Value {
get {
return this.valueField;
}
set {
this.valueField = value;
}
}
}
///
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.7.3081.0")]
[System.SerializableAttribute()]
public enum ResultType {
///
Success,
///
Failure,
///
ParsingError,
}