ExportTableToPointInTimeOutput.fromJson constructor

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

Implementation

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