ExportTableToPointInTimeOutput.fromJson constructor
Implementation
factory ExportTableToPointInTimeOutput.fromJson(Map<String, dynamic> json) {
return ExportTableToPointInTimeOutput(
exportDescription: json['ExportDescription'] != null
? ExportDescription.fromJson(
json['ExportDescription'] as Map<String, dynamic>)
: null,
);
}