fromJson static method
Returns a new DeletePredicateRequest instance and imports
Implementation
// ignore: prefer_constructors_over_static_methods
static DeletePredicateRequest fromJson(dynamic value) {
  final json = value.cast<String, dynamic>();
  return DeletePredicateRequest(
    start: mapDateTime(json, r'start', ''),
    stop: mapDateTime(json, r'stop', ''),
    predicate: mapValueOfType<String>(json, r'predicate'),
  );
}