1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 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.
- // </auto-generated>
- //------------------------------------------------------------------------------
- using System.Xml.Serialization;
- //
- // This source code was auto-generated by xsd, Version=4.7.3081.0.
- //
- /// <remarks/>
- [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;
-
- /// <remarks/>
- [System.Xml.Serialization.XmlAttributeAttribute()]
- public ResultType OverallResult {
- get {
- return this.overallResultField;
- }
- set {
- this.overallResultField = value;
- }
- }
-
- /// <remarks/>
- [System.Xml.Serialization.XmlAttributeAttribute()]
- public int RequestId {
- get {
- return this.requestIdField;
- }
- set {
- this.requestIdField = value;
- }
- }
-
- /// <remarks/>
- [System.Xml.Serialization.XmlTextAttribute()]
- public string Value {
- get {
- return this.valueField;
- }
- set {
- this.valueField = value;
- }
- }
- }
- /// <remarks/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.7.3081.0")]
- [System.SerializableAttribute()]
- public enum ResultType {
-
- /// <remarks/>
- Success,
-
- /// <remarks/>
- Failure,
-
- /// <remarks/>
- ParsingError,
- }
|