CreateSqlInjectionMatchSetResponse.fromJson constructor

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

Implementation

factory CreateSqlInjectionMatchSetResponse.fromJson(
    Map<String, dynamic> json) {
  return CreateSqlInjectionMatchSetResponse(
    changeToken: json['ChangeToken'] as String?,
    sqlInjectionMatchSet: json['SqlInjectionMatchSet'] != null
        ? SqlInjectionMatchSet.fromJson(
            json['SqlInjectionMatchSet'] as Map<String, dynamic>)
        : null,
  );
}