GoogleCloudDatacatalogV1beta1GcsFileSpec.fromJson constructor

GoogleCloudDatacatalogV1beta1GcsFileSpec.fromJson(
  1. Map _json
)

Implementation

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