GoogleCloudDataplexV1Content.fromJson constructor

GoogleCloudDataplexV1Content.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1Content.fromJson(core.Map json_)
    : this(
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        dataText: json_.containsKey('dataText')
            ? json_['dataText'] as core.String
            : null,
        description: json_.containsKey('description')
            ? json_['description'] as core.String
            : null,
        labels: json_.containsKey('labels')
            ? (json_['labels'] as core.Map<core.String, core.dynamic>).map(
                (key, value) => core.MapEntry(
                  key,
                  value as core.String,
                ),
              )
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        notebook: json_.containsKey('notebook')
            ? GoogleCloudDataplexV1ContentNotebook.fromJson(
                json_['notebook'] as core.Map<core.String, core.dynamic>)
            : null,
        path: json_.containsKey('path') ? json_['path'] as core.String : null,
        sqlScript: json_.containsKey('sqlScript')
            ? GoogleCloudDataplexV1ContentSqlScript.fromJson(
                json_['sqlScript'] as core.Map<core.String, core.dynamic>)
            : null,
        uid: json_.containsKey('uid') ? json_['uid'] as core.String : null,
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
      );