toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (billingAccount != null) 'billingAccount': billingAccount!,
  if (offer != null) 'offer': offer!,
  if (parameters != null) 'parameters': parameters!,
  if (priceReferenceId != null) 'priceReferenceId': priceReferenceId!,
  if (purchaseOrderId != null) 'purchaseOrderId': purchaseOrderId!,
  if (requestId != null) 'requestId': requestId!,
};