TransactionOperationResponse.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:4.0.30319.42000
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. using System.Xml.Serialization;
  11. //
  12. // This source code was auto-generated by xsd, Version=4.6.1055.0.
  13. //
  14. /// <remarks/>
  15. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  16. [System.SerializableAttribute()]
  17. [System.Diagnostics.DebuggerStepThroughAttribute()]
  18. [System.ComponentModel.DesignerCategoryAttribute("code")]
  19. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  20. [System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
  21. public partial class TransactionOperationResponse {
  22. private int trxIdField;
  23. private OpResultType overallResultField;
  24. /// <remarks/>
  25. public int TrxId {
  26. get {
  27. return this.trxIdField;
  28. }
  29. set {
  30. this.trxIdField = value;
  31. }
  32. }
  33. /// <remarks/>
  34. [System.Xml.Serialization.XmlAttributeAttribute()]
  35. public OpResultType OverallResult {
  36. get {
  37. return this.overallResultField;
  38. }
  39. set {
  40. this.overallResultField = value;
  41. }
  42. }
  43. }
  44. /// <remarks/>
  45. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  46. [System.SerializableAttribute()]
  47. public enum OpResultType {
  48. /// <remarks/>
  49. Success,
  50. /// <remarks/>
  51. Failure,
  52. /// <remarks/>
  53. ParsingError,
  54. }