GoogleCloudIntegrationsV1alphaMockConfig.fromJson constructor

GoogleCloudIntegrationsV1alphaMockConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaMockConfig.fromJson(core.Map json_)
  : this(
      failedExecutions: json_['failedExecutions'] as core.String?,
      mockStrategy: json_['mockStrategy'] as core.String?,
      parameters:
          (json_['parameters'] as core.List?)
              ?.map(
                (value) =>
                    GoogleCloudIntegrationsV1alphaEventParameter.fromJson(
                      value as core.Map<core.String, core.dynamic>,
                    ),
              )
              .toList(),
    );