@vendasta/billing 11.6.0 → 11.7.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.
@@ -13212,6 +13212,9 @@ class RecurringInvoice {
13212
13212
  if (proto.customerAddress) {
13213
13213
  m.customerAddress = RecurringInvoiceCustomerAddress.fromProto(proto.customerAddress);
13214
13214
  }
13215
+ if (proto.netD) {
13216
+ m.netD = parseInt(proto.netD, 10);
13217
+ }
13215
13218
  return m;
13216
13219
  }
13217
13220
  constructor(kwargs) {
@@ -13282,6 +13285,9 @@ class RecurringInvoice {
13282
13285
  if (typeof this.customerAddress !== 'undefined' && this.customerAddress !== null) {
13283
13286
  toReturn['customerAddress'] = 'toApiJson' in this.customerAddress ? this.customerAddress.toApiJson() : this.customerAddress;
13284
13287
  }
13288
+ if (typeof this.netD !== 'undefined') {
13289
+ toReturn['netD'] = this.netD;
13290
+ }
13285
13291
  return toReturn;
13286
13292
  }
13287
13293
  }