StopBgpFailoverTestResponse.fromJson constructor

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

Implementation

factory StopBgpFailoverTestResponse.fromJson(Map<String, dynamic> json) {
  return StopBgpFailoverTestResponse(
    virtualInterfaceTest: json['virtualInterfaceTest'] != null
        ? VirtualInterfaceTestHistory.fromJson(
            json['virtualInterfaceTest'] as Map<String, dynamic>)
        : null,
  );
}