GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo.fromJson constructor

GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo.fromJson(
  core.Map json_,
) : this(
      endpoints: (json_['endpoints'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudRecaptchaenterpriseV1EndpointVerificationInfo.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      languageCode: json_['languageCode'] as core.String?,
      latestVerificationResult:
          json_['latestVerificationResult'] as core.String?,
      username: json_['username'] as core.String?,
    );