CreateIngestionResponse.fromJson constructor
Implementation
factory CreateIngestionResponse.fromJson(Map<String, dynamic> json) {
return CreateIngestionResponse(
arn: json['Arn'] as String?,
ingestionId: json['IngestionId'] as String?,
ingestionStatus:
(json['IngestionStatus'] as String?)?.toIngestionStatus(),
requestId: json['RequestId'] as String?,
);
}