toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final batchId = this.batchId;
  final contactEmail = this.contactEmail;
  final contactName = this.contactName;
  final country = this.country;
  final gmbEmail = this.gmbEmail;
  final liaSettings = this.liaSettings;
  final merchantId = this.merchantId;
  final method = this.method;
  final omnichannelExperience = this.omnichannelExperience;
  final posDataProviderId = this.posDataProviderId;
  final posExternalAccountId = this.posExternalAccountId;
  return {
    'accountId': ?accountId,
    'batchId': ?batchId,
    'contactEmail': ?contactEmail,
    'contactName': ?contactName,
    'country': ?country,
    'gmbEmail': ?gmbEmail,
    'liaSettings': ?liaSettings,
    'merchantId': ?merchantId,
    'method': ?method,
    'omnichannelExperience': ?omnichannelExperience,
    'posDataProviderId': ?posDataProviderId,
    'posExternalAccountId': ?posExternalAccountId,
  };
}