GoogleCloudContentwarehouseV1WeightedSchemaProperty.fromJson constructor

GoogleCloudContentwarehouseV1WeightedSchemaProperty.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1WeightedSchemaProperty.fromJson(core.Map json_)
  : this(
      documentSchemaName: json_['documentSchemaName'] as core.String?,
      propertyNames:
          (json_['propertyNames'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );