GoogleCloudContentwarehouseV1PropertyFilter.fromJson constructor

GoogleCloudContentwarehouseV1PropertyFilter.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1PropertyFilter.fromJson(core.Map json_)
    : this(
        condition: json_.containsKey('condition')
            ? json_['condition'] as core.String
            : null,
        documentSchemaName: json_.containsKey('documentSchemaName')
            ? json_['documentSchemaName'] as core.String
            : null,
      );