toJson method

Map<String, dynamic> toJson()

Implementation

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