DeleteXssMatchSetResponse.fromJson constructor

DeleteXssMatchSetResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DeleteXssMatchSetResponse.fromJson(Map<String, dynamic> json) {
  return DeleteXssMatchSetResponse(
    changeToken: json['ChangeToken'] as String?,
  );
}