GoogleCloudDatacatalogV1GcsFileSpec.fromJson constructor

GoogleCloudDatacatalogV1GcsFileSpec.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDatacatalogV1GcsFileSpec.fromJson(core.Map json_)
    : this(
        filePath: json_.containsKey('filePath')
            ? json_['filePath'] as core.String
            : null,
        gcsTimestamps: json_.containsKey('gcsTimestamps')
            ? GoogleCloudDatacatalogV1SystemTimestamps.fromJson(
                json_['gcsTimestamps'] as core.Map<core.String, core.dynamic>)
            : null,
        sizeBytes: json_.containsKey('sizeBytes')
            ? json_['sizeBytes'] as core.String
            : null,
      );