v1DeletePoliciesIntent.fromJson constructor
Implementation
factory v1DeletePoliciesIntent.fromJson(Map<String, dynamic> json) {
final _policyIds = (json['policyIds'] as List).map((e) => e as String).toList();
return v1DeletePoliciesIntent(
policyIds: _policyIds,
);
}