toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final complyWithGuidelines = this.complyWithGuidelines;
  final hasBusinessAuthority = this.hasBusinessAuthority;
  final hasVoiceOfMerchant = this.hasVoiceOfMerchant;
  final resolveOwnershipConflict = this.resolveOwnershipConflict;
  final verify = this.verify;
  final waitForVoiceOfMerchant = this.waitForVoiceOfMerchant;
  return {
    'complyWithGuidelines': ?complyWithGuidelines,
    'hasBusinessAuthority': ?hasBusinessAuthority,
    'hasVoiceOfMerchant': ?hasVoiceOfMerchant,
    'resolveOwnershipConflict': ?resolveOwnershipConflict,
    'verify': ?verify,
    'waitForVoiceOfMerchant': ?waitForVoiceOfMerchant,
  };
}