toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final currencyCode = this.currencyCode;
  final name = this.name;
  final payingManagerCustomer = this.payingManagerCustomer;
  final paymentsAccountId = this.paymentsAccountId;
  final paymentsProfileId = this.paymentsProfileId;
  final resourceName = this.resourceName;
  final secondaryPaymentsProfileId = this.secondaryPaymentsProfileId;
  return {
    'currencyCode': ?currencyCode,
    'name': ?name,
    'payingManagerCustomer': ?payingManagerCustomer,
    'paymentsAccountId': ?paymentsAccountId,
    'paymentsProfileId': ?paymentsProfileId,
    'resourceName': ?resourceName,
    'secondaryPaymentsProfileId': ?secondaryPaymentsProfileId,
  };
}