GoogleChromePolicyVersionsV1ModifyOrgUnitPolicyRequest.fromJson constructor

GoogleChromePolicyVersionsV1ModifyOrgUnitPolicyRequest.fromJson(
  1. Map json_
)

Implementation

GoogleChromePolicyVersionsV1ModifyOrgUnitPolicyRequest.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?,
    );