GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo.fromJson constructor

GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo.fromJson(
  1. Map json_
)

Implementation

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