DescribeIngestionResponse.fromJson constructor
Implementation
factory DescribeIngestionResponse.fromJson(Map<String, dynamic> json) {
return DescribeIngestionResponse(
ingestion: json['Ingestion'] != null
? Ingestion.fromJson(json['Ingestion'] as Map<String, dynamic>)
: null,
requestId: json['RequestId'] as String?,
);
}