-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCustomer.cs
288 lines (260 loc) · 6.01 KB
/
Customer.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
// Decompiled with JetBrains decompiler
// Type: MercadoPago.Customer
// Assembly: MercadoPago, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 0C24A3BA-51C0-4EAB-8180-D4EA12994FDF
// Assembly location: C:\Users\Laucha\source\repos\WindowsFormsApp1\WindowsFormsApp1\bin\Debug\MercadoPago.dll
using MercadoPago.DataStructures.Customer;
using MercadoPago.Resources;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
namespace MercadoPago
{
public class Customer : MPBase
{
private List<Card> _cards = new List<Card>();
private List<CustomerAddress> _addresses = new List<CustomerAddress>();
private string _id;
private string _email;
private string _first_name;
private string _last_name;
private MercadoPago.DataStructures.Customer.Phone? _phone;
private MercadoPago.DataStructures.Customer.Identification? _identification;
private string _default_address;
private MercadoPago.DataStructures.Customer.Address? _address;
private DateTime? _date_registered;
private string _description;
private DateTime? _date_created;
private DateTime? _date_last_updated;
private JObject _metadata;
private string _default_card;
private bool? _live_mode;
public Customer(SDK sdk) : base(sdk)
{
}
[GETEndpoint("/v1/customers/search")]
public static List<MercadoPago.Customer> Search(Dictionary<string, string> filters, SDK sdk)
{
return MercadoPago.Customer.Search(filters, MPBase.WITHOUT_CACHE, sdk);
}
[GETEndpoint("/v1/customers/search")]
public static List<MercadoPago.Customer> Search(
Dictionary<string, string> filters,
bool useCache, SDK sdk)
{
return MPBase.ProcessMethodBulk<MercadoPago.Customer>(typeof (MercadoPago.Customer), nameof (Search), filters, useCache, sdk);
}
[GETEndpoint("/v1/customers/:id")]
public static MercadoPago.Customer FindById(string id, bool useCache, SDK sdk)
{
return (MercadoPago.Customer) MPBase.ProcessMethod<MercadoPago.Customer>(nameof (FindById), id, useCache, sdk);
}
[GETEndpoint("/v1/customers/:id")]
public static MercadoPago.Customer FindById(string id, SDK sdk)
{
return MercadoPago.Customer.FindById(id, MPBase.WITHOUT_CACHE, sdk);
}
[POSTEndpoint("/v1/customers")]
public MercadoPago.Customer Save(SDK sdk)
{
return (MercadoPago.Customer) this.ProcessMethod<MercadoPago.Customer>(nameof (Save), MPBase.WITHOUT_CACHE, sdk);
}
[PUTEndpoint("/v1/customers/:id")]
public MercadoPago.Customer Update(SDK sdk)
{
return (MercadoPago.Customer) this.ProcessMethod<MercadoPago.Customer>(nameof (Update), MPBase.WITHOUT_CACHE, sdk);
}
[DELETEEndpoint("/v1/customers/:id")]
public MercadoPago.Customer Delete(SDK sdk)
{
return (MercadoPago.Customer) this.ProcessMethod<MercadoPago.Customer>(nameof (Delete), MPBase.WITHOUT_CACHE, sdk);
}
public string Id
{
get
{
return this._id;
}
set
{
this._id = value;
}
}
public string Email
{
get
{
return this._email;
}
set
{
this._email = value;
}
}
public string FirstName
{
get
{
return this._first_name;
}
set
{
this._first_name = value;
}
}
public string LastName
{
get
{
return this._last_name;
}
set
{
this._last_name = value;
}
}
public MercadoPago.DataStructures.Customer.Phone? Phone
{
get
{
return this._phone;
}
set
{
this._phone = value;
}
}
public MercadoPago.DataStructures.Customer.Identification? Identification
{
get
{
return this._identification;
}
set
{
this._identification = value;
}
}
public string DefaultAddress
{
get
{
return this._default_address;
}
set
{
this._default_address = value;
}
}
public MercadoPago.DataStructures.Customer.Address? Address
{
get
{
return this._address;
}
set
{
this._address = value;
}
}
public DateTime? DateRegistered
{
get
{
return this._date_registered;
}
set
{
this._date_registered = value;
}
}
public string Description
{
get
{
return this._description;
}
set
{
this._description = value;
}
}
public DateTime? DateCreated
{
get
{
return this._date_created;
}
set
{
this._date_created = value;
}
}
public DateTime? DateLastUpdated
{
get
{
return this._date_last_updated;
}
set
{
this._date_last_updated = value;
}
}
public JObject Metadata
{
get
{
return this._metadata;
}
set
{
this._metadata = value;
}
}
public string DefaultCard
{
get
{
return this._default_card;
}
set
{
this._default_card = value;
}
}
public List<Card> Cards
{
get
{
return this._cards;
}
set
{
this._cards = value;
}
}
public List<CustomerAddress> Addresses
{
get
{
return this._addresses;
}
set
{
this._addresses = value;
}
}
public bool? LiveMode
{
get
{
return this._live_mode;
}
set
{
this._live_mode = value;
}
}
}
}