GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse.fromJson constructor
GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse.fromJson(
core.Map json_)
: this(
environmentGroupAttachments: json_
.containsKey('environmentGroupAttachments')
? (json_['environmentGroupAttachments'] as core.List)
.map((value) =>
GoogleCloudApigeeV1EnvironmentGroupAttachment.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);