toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final enableConsentBasedRedaction = this.enableConsentBasedRedaction;
  final enableInteractionLogging = this.enableInteractionLogging;
  final enableStackdriverLogging = this.enableStackdriverLogging;
  return {
    'enableConsentBasedRedaction': ?enableConsentBasedRedaction,
    'enableInteractionLogging': ?enableInteractionLogging,
    'enableStackdriverLogging': ?enableStackdriverLogging,
  };
}