123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //------------------------------------------------------------------------------
- // <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.6.1055.0.
- //
- /// <remarks/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.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 TransactionOperationResponse {
-
- private int trxIdField;
-
- private OpResultType overallResultField;
-
- /// <remarks/>
- public int TrxId {
- get {
- return this.trxIdField;
- }
- set {
- this.trxIdField = value;
- }
- }
-
- /// <remarks/>
- [System.Xml.Serialization.XmlAttributeAttribute()]
- public OpResultType OverallResult {
- get {
- return this.overallResultField;
- }
- set {
- this.overallResultField = value;
- }
- }
- }
- /// <remarks/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
- [System.SerializableAttribute()]
- public enum OpResultType {
-
- /// <remarks/>
- Success,
-
- /// <remarks/>
- Failure,
-
- /// <remarks/>
- ParsingError,
- }
|