DeleteRealtimeEndpointOutput.fromJson constructor
Implementation
factory DeleteRealtimeEndpointOutput.fromJson(Map<String, dynamic> json) {
  return DeleteRealtimeEndpointOutput(
    mLModelId: json['MLModelId'] as String?,
    realtimeEndpointInfo: json['RealtimeEndpointInfo'] != null
        ? RealtimeEndpointInfo.fromJson(
            json['RealtimeEndpointInfo'] as Map<String, dynamic>)
        : null,
  );
}