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