GoogleChromePolicyVersionsV1ModifyGroupPolicyRequest.fromJson constructor

GoogleChromePolicyVersionsV1ModifyGroupPolicyRequest.fromJson(
  1. Map json_
)

Implementation

GoogleChromePolicyVersionsV1ModifyGroupPolicyRequest.fromJson(core.Map json_)
  : this(
      policyTargetKey:
          json_.containsKey('policyTargetKey')
              ? GoogleChromePolicyVersionsV1PolicyTargetKey.fromJson(
                json_['policyTargetKey']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      policyValue:
          json_.containsKey('policyValue')
              ? GoogleChromePolicyVersionsV1PolicyValue.fromJson(
                json_['policyValue'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      updateMask: json_['updateMask'] as core.String?,
    );