GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse.fromJson(core.Map json_)
  : this(
      assertionResults:
          (json_['assertionResults'] as core.List?)
              ?.map(
                (value) =>
                    GoogleCloudIntegrationsV1alphaAssertionResult.fromJson(
                      value as core.Map<core.String, core.dynamic>,
                    ),
              )
              .toList(),
      executionId: json_['executionId'] as core.String?,
      outputParameters:
          json_.containsKey('outputParameters')
              ? json_['outputParameters']
                  as core.Map<core.String, core.dynamic>
              : null,
      testExecutionState: json_['testExecutionState'] as core.String?,
    );