GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse.fromJson(
    core.Map json_)
    : this(
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
        runtimeEntitySchemas: json_.containsKey('runtimeEntitySchemas')
            ? (json_['runtimeEntitySchemas'] as core.List)
                .map((value) =>
                    GoogleCloudIntegrationsV1alphaRuntimeEntitySchema
                        .fromJson(
                            value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );