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