toJson method
Implementation
Map<String, dynamic> toJson() {
final billingMode = this.billingMode;
final lastUpdateToPayPerRequestDateTime =
this.lastUpdateToPayPerRequestDateTime;
return {
if (billingMode != null) 'BillingMode': billingMode,
if (lastUpdateToPayPerRequestDateTime != null)
'LastUpdateToPayPerRequestDateTime': lastUpdateToPayPerRequestDateTime,
};
}