@vantagepay/vantagepay 0.15.1 → 0.15.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -208,9 +208,9 @@ export declare class MerchantBankAccount {
208
208
  /** The branch code associated with the bank which holds the bank account. */
209
209
  routingCode?: string;
210
210
  /**
211
- * Can be set to True when creating a brand new Merchant to indicate that default settlement rules should be created for the bank account or when editing a Merchant if HasSettlementRules = FALSE.
212
- * Attempting to set this property to FALSE if HasSettlementRules = TRUE has no effect because currently the only way to delete or disable settlement rules is via direct database access.
213
- */
211
+ * Can be set to True when creating a brand new Merchant to indicate that default settlement rules should be created for the bank account or when editing a Merchant if HasSettlementRules = FALSE.
212
+ * Attempting to set this property to FALSE if HasSettlementRules = TRUE has no effect because currently the only way to delete or disable settlement rules is via direct database access.
213
+ */
214
214
  isSettlement: boolean;
215
215
  /** This property will be set to TRUE if default settlement rules have been created for this bank account in the database. */
216
216
  hasSettlementRules: boolean;
@@ -242,9 +242,9 @@ export declare class MerchantMobileWallet {
242
242
  currency: Currency;
243
243
  accountName?: string;
244
244
  /**
245
- * Can be set to True when creating a brand new Merchant to indicate that default settlement rules should be created for the mobile wallet or when editing a Merchant if HasSettlementRules = FALSE.
246
- * Attempting to set this property to FALSE if HasSettlementRules = TRUE has no effect because currently the only way to delete or disable settlement rules is via direct database access.
247
- */
245
+ * Can be set to True when creating a brand new Merchant to indicate that default settlement rules should be created for the mobile wallet or when editing a Merchant if HasSettlementRules = FALSE.
246
+ * Attempting to set this property to FALSE if HasSettlementRules = TRUE has no effect because currently the only way to delete or disable settlement rules is via direct database access.
247
+ */
248
248
  isSettlement: boolean;
249
249
  /** This property will be set to TRUE if default settlement rules have been created for this mobile wallet in the database. */
250
250
  hasSettlementRules: boolean;
@@ -401,14 +401,14 @@ export declare class Terminal {
401
401
  isActive: boolean;
402
402
  isLinked: boolean;
403
403
  /**
404
- * The list of all QR codes associated with the Terminal including QR codes that originated in external systems and QR codes generated in this system (V2QR).
405
- * V2QR codes are not stored in the database, they are generated on-the-fly every time Merchant details are retrieved, and are added to this collection at that time.
406
- */
404
+ * The list of all QR codes associated with the Terminal including QR codes that originated in external systems and QR codes generated in this system (V2QR).
405
+ * V2QR codes are not stored in the database, they are generated on-the-fly every time Merchant details are retrieved, and are added to this collection at that time.
406
+ */
407
407
  qrCodes: TerminalQrCode[];
408
408
  /**
409
- * A list of QR codes that originated in external systems that are associated with the Terminal.
410
- * These QR codes are stored in the database when a Merchant is registered with an external Merchant management system and QR codes are supplied by that external system.
411
- */
409
+ * A list of QR codes that originated in external systems that are associated with the Terminal.
410
+ * These QR codes are stored in the database when a Merchant is registered with an external Merchant management system and QR codes are supplied by that external system.
411
+ */
412
412
  externalQrCodes: TerminalQrCode[];
413
413
  notificationTokens: TerminalNotificationToken[];
414
414
  additionalReferences: AdditionalTerminalReference[];