GoogleCloudContentwarehouseV1EnumTypeOptions.fromJson constructor

GoogleCloudContentwarehouseV1EnumTypeOptions.fromJson(
  1. Map json_
)

Implementation

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