GooglePrivacyDlpV2BigQueryField.fromJson constructor

GooglePrivacyDlpV2BigQueryField.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2BigQueryField.fromJson(core.Map json_)
    : this(
        field: json_.containsKey('field')
            ? GooglePrivacyDlpV2FieldId.fromJson(
                json_['field'] as core.Map<core.String, core.dynamic>)
            : null,
        table: json_.containsKey('table')
            ? GooglePrivacyDlpV2BigQueryTable.fromJson(
                json_['table'] as core.Map<core.String, core.dynamic>)
            : null,
      );