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