BatchDeleteDocumentResponseFailedDocument.fromJson constructor
Implementation
factory BatchDeleteDocumentResponseFailedDocument.fromJson(
Map<String, dynamic> json) {
return BatchDeleteDocumentResponseFailedDocument(
errorCode: (json['ErrorCode'] as String?)?.toErrorCode(),
errorMessage: json['ErrorMessage'] as String?,
id: json['Id'] as String?,
);
}