GoogleCloudDataplexV1AssetStatus.fromJson constructor

GoogleCloudDataplexV1AssetStatus.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1AssetStatus.fromJson(core.Map json_)
    : this(
        activeAssets: json_.containsKey('activeAssets')
            ? json_['activeAssets'] as core.int
            : null,
        securityPolicyApplyingAssets:
            json_.containsKey('securityPolicyApplyingAssets')
                ? json_['securityPolicyApplyingAssets'] as core.int
                : null,
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
      );