GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessment.fromJson constructor
GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessment.fromJson(
- Map json_
Implementation
GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessment.fromJson(
core.Map json_,
) : this(
accountTakeoverVerdict: json_.containsKey('accountTakeoverVerdict')
? GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTakeoverVerdict.fromJson(
json_['accountTakeoverVerdict']
as core.Map<core.String, core.dynamic>,
)
: null,
labels: (json_['labels'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);