toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final billingAccount = this.billingAccount;
final offer = this.offer;
final parameters = this.parameters;
final priceReferenceId = this.priceReferenceId;
final purchaseOrderId = this.purchaseOrderId;
final requestId = this.requestId;
return {
'billingAccount': ?billingAccount,
'offer': ?offer,
'parameters': ?parameters,
'priceReferenceId': ?priceReferenceId,
'purchaseOrderId': ?purchaseOrderId,
'requestId': ?requestId,
};
}