GoogleCloudContentwarehouseV1EnumTypeOptions.fromJson constructor

GoogleCloudContentwarehouseV1EnumTypeOptions.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1EnumTypeOptions.fromJson(core.Map json_)
    : this(
        possibleValues: json_.containsKey('possibleValues')
            ? (json_['possibleValues'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        validationCheckDisabled: json_.containsKey('validationCheckDisabled')
            ? json_['validationCheckDisabled'] as core.bool
            : null,
      );