-
Notifications
You must be signed in to change notification settings - Fork 0
/
PagosPagoDoctoRelacionado.cs
151 lines (135 loc) · 3.57 KB
/
PagosPagoDoctoRelacionado.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// Decompiled with JetBrains decompiler
// Type: AsistenteComplementoPago.PagosPagoDoctoRelacionado
// Assembly: AsistenteComplementoPago, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: B1709CDC-0C8A-45BF-A0E1-9F7D768ECF51
// Assembly location: C:\Users\Jorge Zamarron\Pictures\AsistenteComplementoPago.exe
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Xml.Serialization;
namespace AsistenteComplementoPago
{
[GeneratedCode("xsd", "4.0.30319.1")]
[DebuggerStepThrough]
[DesignerCategory("code")]
[XmlType(AnonymousType = true, Namespace = "http://www.sat.gob.mx/Pagos")]
[Serializable]
public class PagosPagoDoctoRelacionado
{
private string idDocumentoField;
private string serieField;
private string folioField;
private string monedaDRField;
private Decimal tipoCambioDRField;
private bool tipoCambioDRFieldSpecified;
private string metodoDePagoDRField;
private string numParcialidadField;
private Decimal impSaldoAntField;
private bool impSaldoAntFieldSpecified;
private Decimal impPagadoField;
private bool impPagadoFieldSpecified;
private Decimal impSaldoInsolutoField;
private bool impSaldoInsolutoFieldSpecified;
[XmlAttribute]
public string IdDocumento
{
get => this.idDocumentoField;
set => this.idDocumentoField = value;
}
[XmlAttribute]
public string Serie
{
get => this.serieField;
set => this.serieField = value;
}
[XmlAttribute]
public string Folio
{
get => this.folioField;
set => this.folioField = value;
}
[XmlAttribute]
public string MonedaDR
{
get => this.monedaDRField;
set => this.monedaDRField = value;
}
[XmlAttribute]
public Decimal TipoCambioDR
{
get => this.tipoCambioDRField;
set
{
this.tipoCambioDRFieldSpecified = true;
this.tipoCambioDRField = value;
}
}
[XmlIgnore]
public bool TipoCambioDRSpecified
{
get => this.tipoCambioDRFieldSpecified;
set => this.tipoCambioDRFieldSpecified = value;
}
[XmlAttribute]
public string MetodoDePagoDR
{
get => this.metodoDePagoDRField;
set => this.metodoDePagoDRField = value;
}
[XmlAttribute(DataType = "integer")]
public string NumParcialidad
{
get => this.numParcialidadField;
set => this.numParcialidadField = value;
}
[XmlAttribute]
public Decimal ImpSaldoAnt
{
get => this.impSaldoAntField;
set
{
this.impSaldoAntFieldSpecified = true;
this.impSaldoAntField = value;
}
}
[XmlIgnore]
public bool ImpSaldoAntSpecified
{
get => this.impSaldoAntFieldSpecified;
set => this.impSaldoAntFieldSpecified = value;
}
[XmlAttribute]
public Decimal ImpPagado
{
get => this.impPagadoField;
set
{
this.impPagadoFieldSpecified = true;
this.impPagadoField = value;
}
}
[XmlIgnore]
public bool ImpPagadoSpecified
{
get => this.impPagadoFieldSpecified;
set => this.impPagadoFieldSpecified = value;
}
[XmlAttribute]
public Decimal ImpSaldoInsoluto
{
get => this.impSaldoInsolutoField;
set
{
this.impSaldoInsolutoFieldSpecified = true;
this.impSaldoInsolutoField = value;
}
}
[XmlIgnore]
public bool ImpSaldoInsolutoSpecified
{
get => this.impSaldoInsolutoFieldSpecified;
set => this.impSaldoInsolutoFieldSpecified = value;
}
}
}