BatchUndeleteAlertsRequest.fromJson constructor
BatchUndeleteAlertsRequest.fromJson(
- Map json_
Implementation
BatchUndeleteAlertsRequest.fromJson(core.Map json_)
: this(
alertId: json_.containsKey('alertId')
? (json_['alertId'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
customerId: json_.containsKey('customerId')
? json_['customerId'] as core.String
: null,
);