toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountItemUpdatesSettings = this.accountItemUpdatesSettings;
final effectiveAllowAvailabilityUpdates =
this.effectiveAllowAvailabilityUpdates;
final effectiveAllowConditionUpdates = this.effectiveAllowConditionUpdates;
final effectiveAllowPriceUpdates = this.effectiveAllowPriceUpdates;
final effectiveAllowStrictAvailabilityUpdates =
this.effectiveAllowStrictAvailabilityUpdates;
return {
'accountItemUpdatesSettings': ?accountItemUpdatesSettings,
'effectiveAllowAvailabilityUpdates': ?effectiveAllowAvailabilityUpdates,
'effectiveAllowConditionUpdates': ?effectiveAllowConditionUpdates,
'effectiveAllowPriceUpdates': ?effectiveAllowPriceUpdates,
'effectiveAllowStrictAvailabilityUpdates':
?effectiveAllowStrictAvailabilityUpdates,
};
}