AccountItemUpdates.fromJson constructor

AccountItemUpdates.fromJson(
  1. Map json_
)

Implementation

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