AutomaticItemUpdates.fromJson constructor

AutomaticItemUpdates.fromJson(
  1. Map json_
)

Implementation

AutomaticItemUpdates.fromJson(core.Map json_)
  : this(
      accountItemUpdatesSettings:
          json_.containsKey('accountItemUpdatesSettings')
              ? ItemUpdatesAccountLevelSettings.fromJson(
                json_['accountItemUpdatesSettings']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      effectiveAllowAvailabilityUpdates:
          json_['effectiveAllowAvailabilityUpdates'] as core.bool?,
      effectiveAllowConditionUpdates:
          json_['effectiveAllowConditionUpdates'] as core.bool?,
      effectiveAllowPriceUpdates:
          json_['effectiveAllowPriceUpdates'] as core.bool?,
      effectiveAllowStrictAvailabilityUpdates:
          json_['effectiveAllowStrictAvailabilityUpdates'] as core.bool?,
    );