GoogleCloudContactcenterinsightsV1InitializeEncryptionSpecRequest.fromJson constructor
GoogleCloudContactcenterinsightsV1InitializeEncryptionSpecRequest.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1InitializeEncryptionSpecRequest.fromJson(
core.Map json_,
) : this(
encryptionSpec:
json_.containsKey('encryptionSpec')
? GoogleCloudContactcenterinsightsV1EncryptionSpec.fromJson(
json_['encryptionSpec']
as core.Map<core.String, core.dynamic>,
)
: null,
);