GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo.fromJson constructor

GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo.fromJson(
    core.Map json_)
    : this(
        avsResponseCode: json_.containsKey('avsResponseCode')
            ? json_['avsResponseCode'] as core.String
            : null,
        cvvResponseCode: json_.containsKey('cvvResponseCode')
            ? json_['cvvResponseCode'] as core.String
            : null,
        gatewayResponseCode: json_.containsKey('gatewayResponseCode')
            ? json_['gatewayResponseCode'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );