toJson method
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,
};
}