@class NSString, NSPredicate, NSDictionary; @interface NSBatchUpdateRequest : NSPersistentStoreRequest { struct _requestFlags { unsigned char includesSubentities : 1; unsigned char resultType : 2; unsigned char entityIsName : 1; unsigned char secureOperation : 1; unsigned int _RESERVED : 27; } _flags; } @property (nonatomic, getter=_secureOperation, setter=_setSecureOperation:) BOOL shouldPerformSecureOperation; @property (readonly, copy) NSString *entityName; @property (readonly) id entity; @property (retain) NSPredicate *predicate; @property BOOL includesSubentities; @property unsigned long long resultType; @property (copy) NSDictionary *propertiesToUpdate; @property (readonly) unsigned long long hash; @property (readonly) Class superclass; @property (readonly, copy) NSString *description; @property (readonly, copy) NSString *debugDescription; + (id)batchUpdateRequestWithEntityName:(id)a0; + (id)decodeFromXPCArchive:(id)a0 withContext:(id)a1 withPolicy:(id)a2; - (id)init; - (id)initWithEntity:(id)a0; - (void)dealloc; - (id)initWithEntityName:(id)a0; - (id)encodeForXPC; - (BOOL)shouldPerformSecureOperation; - (void)setShouldPerformSecureOperation:(BOOL)a0; - (void)_resolveEntityWithContext:(id)a0; - (unsigned long long)requestType; @end