DescribeIngestionResponse.fromJson constructor

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

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?,
  );
}