CreateIngestionResponse.fromJson constructor

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

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