Can it auto choose don't import apply to all duplicates in Apple Script

I was trying to write a script that can automatically import new photos in to the Photoslibrary,

in AppleScript, there are only bool value to determine whether check duplicates, is there a way to do like " check and always do not import duplicate items "

You can write and compile (check syntax) then...

tell application "Photos"
	import input into album "Cartoon" skip check duplicates true
end tell

This code is converted to this style

tell application "Photos"
	import input into album "Cartoon" with skip check duplicates
end tell
Can it auto choose don't import apply to all duplicates in Apple Script
 
 
Q