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