You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -233,7 +229,6 @@ abstract class P2pAdvertCreateModel {
233
229
requiredthis.rateType,
234
230
requiredthis.rateDisplay,
235
231
requiredthis.rate,
236
-
requiredthis.orderExpiryPeriod,
237
232
requiredthis.minOrderAmountLimitDisplay,
238
233
requiredthis.minOrderAmountLimit,
239
234
requiredthis.minOrderAmountDisplay,
@@ -250,7 +245,6 @@ abstract class P2pAdvertCreateModel {
250
245
requiredthis.createdTime,
251
246
requiredthis.country,
252
247
requiredthis.counterpartyType,
253
-
requiredthis.blockTrade,
254
248
requiredthis.amountDisplay,
255
249
requiredthis.amount,
256
250
requiredthis.advertiserDetails,
@@ -259,10 +253,6 @@ abstract class P2pAdvertCreateModel {
259
253
this.contactInfo,
260
254
this.effectiveRate,
261
255
this.effectiveRateDisplay,
262
-
this.eligibleCountries,
263
-
this.minCompletionRate,
264
-
this.minJoinDays,
265
-
this.minRating,
266
256
this.paymentInfo,
267
257
this.paymentMethod,
268
258
this.paymentMethodDetails,
@@ -290,9 +280,6 @@ abstract class P2pAdvertCreateModel {
290
280
/// Conversion rate from advertiser's account currency to `local_currency`. An absolute rate value (fixed), or percentage offset from current market rate (floating).
291
281
finaldouble rate;
292
282
293
-
/// Expiry period (seconds) for order created against this ad.
294
-
finalint orderExpiryPeriod;
295
-
296
283
/// Minimum order amount at this time, in `account_currency`, formatted to appropriate decimal places.
297
284
finalString minOrderAmountLimitDisplay;
298
285
@@ -341,9 +328,6 @@ abstract class P2pAdvertCreateModel {
341
328
/// Type of transaction from the opposite party's perspective.
342
329
finalCounterpartyTypeEnum counterpartyType;
343
330
344
-
/// Indicates if this is block trade advert or not.
345
-
finalbool blockTrade;
346
-
347
331
/// The total amount specified in advert, in `account_currency`, formatted to appropriate decimal places.
348
332
finalString amountDisplay;
349
333
@@ -368,18 +352,6 @@ abstract class P2pAdvertCreateModel {
368
352
/// Conversion rate from account currency to local currency, using current market rate if applicable, formatted to appropriate decimal places.
369
353
finalString? effectiveRateDisplay;
370
354
371
-
/// 2 letter country codes. Counterparties who do not live in these countries are not allowed to place orders against this advert.
372
-
finalList<String>? eligibleCountries;
373
-
374
-
/// Counterparties who have a 30 day completion rate less than this value are not allowed to place orders against this advert.
375
-
finaldouble? minCompletionRate;
376
-
377
-
/// Counterparties who joined less than this number of days ago are not allowed to place orders against this advert.
378
-
finalint? minJoinDays;
379
-
380
-
/// Counterparties who have an average rating less than this value are not allowed to place orders against this advert.
381
-
finaldouble? minRating;
382
-
383
355
/// Payment instructions. Only applicable for 'sell adverts'.
384
356
finalString? paymentInfo;
385
357
@@ -406,7 +378,6 @@ abstract class P2pAdvertCreateModel {
406
378
/// - `advertiser_ads_paused`: the advertiser has paused all adverts.
407
379
/// - `advertiser_approval`: the advertiser's proof of identity is not verified.
408
380
/// - `advertiser_balance`: the advertiser's P2P balance is less than the minimum order.
409
-
/// - `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading.
410
381
/// - `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order.
411
382
/// - `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.
0 commit comments