DeleteLinks.fromJson constructor
Implementation
factory DeleteLinks.fromJson(Map<String, dynamic> json) => DeleteLinks(
self: List<Collection>.from(
json["self"].map((x) => Collection.fromJson(x))),
collection: List<Collection>.from(
json["collection"].map((x) => Collection.fromJson(x))),
customer: List<Collection>.from(
json["customer"].map((x) => Collection.fromJson(x))),
);