GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest.fromJson constructor

GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest.fromJson(
  core.Map json_,
) : this(
      apiTriggerResources:
          (json_['apiTriggerResources'] as core.List?)
              ?.map(
                (value) =>
                    GoogleCloudIntegrationsV1alphaApiTriggerResource.fromJson(
                      value as core.Map<core.String, core.dynamic>,
                    ),
              )
              .toList(),
      fileFormat: json_['fileFormat'] as core.String?,
    );