@vendasta/billing 12.2.0 → 12.3.0

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.
@@ -12322,6 +12322,9 @@ class RetailCustomerConfiguration {
12322
12322
  if (typeof this.useTemplateInvoice !== 'undefined') {
12323
12323
  toReturn['useTemplateInvoice'] = this.useTemplateInvoice;
12324
12324
  }
12325
+ if (typeof this.memo !== 'undefined') {
12326
+ toReturn['memo'] = this.memo;
12327
+ }
12325
12328
  return toReturn;
12326
12329
  }
12327
12330
  }
@@ -12372,6 +12375,9 @@ class UpsertRetailCustomerConfigurationRequest {
12372
12375
  if (typeof this.useTemplateInvoice !== 'undefined') {
12373
12376
  toReturn['useTemplateInvoice'] = this.useTemplateInvoice;
12374
12377
  }
12378
+ if (typeof this.memo !== 'undefined') {
12379
+ toReturn['memo'] = this.memo;
12380
+ }
12375
12381
  return toReturn;
12376
12382
  }
12377
12383
  }