StopContinuousExportResponse.fromJson constructor
Implementation
factory StopContinuousExportResponse.fromJson(Map<String, dynamic> json) {
return StopContinuousExportResponse(
startTime: timeStampFromJson(json['startTime']),
stopTime: timeStampFromJson(json['stopTime']),
);
}