BulkEditAssignedTargetingOptionsResponse.fromJson constructor
BulkEditAssignedTargetingOptionsResponse.fromJson(
- Map json_
Implementation
BulkEditAssignedTargetingOptionsResponse.fromJson(core.Map json_)
: this(
errors:
(json_['errors'] as core.List?)
?.map(
(value) => Status.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
failedLineItemIds:
(json_['failedLineItemIds'] as core.List?)
?.map((value) => value as core.String)
.toList(),
updatedLineItemIds:
(json_['updatedLineItemIds'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);