EnterpriseCrmLoggingGwsFieldLimits.fromJson constructor

EnterpriseCrmLoggingGwsFieldLimits.fromJson(
  1. Map json_
)

Implementation

EnterpriseCrmLoggingGwsFieldLimits.fromJson(core.Map json_)
    : this(
        logAction: json_.containsKey('logAction')
            ? json_['logAction'] as core.String
            : null,
        logType: json_.containsKey('logType')
            ? (json_['logType'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        maxArraySize: json_.containsKey('maxArraySize')
            ? json_['maxArraySize'] as core.int
            : null,
        maxStringLength: json_.containsKey('maxStringLength')
            ? json_['maxStringLength'] as core.int
            : null,
        shortenerType: json_.containsKey('shortenerType')
            ? json_['shortenerType'] as core.String
            : null,
      );