Skip to content

Instantly share code, notes, and snippets.

@rodericj
Created March 19, 2015 20:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodericj/b9bf629a72821960513e to your computer and use it in GitHub Desktop.
Save rodericj/b9bf629a72821960513e to your computer and use it in GitHub Desktop.
diff --git a/Crashlytics.framework/Versions/A/Crashlytics b/Crashlytics.framework/Versions/A/Crashlytics
index df0fe47..42d9da7 100644
Binary files a/Crashlytics.framework/Versions/A/Crashlytics and b/Crashlytics.framework/Versions/A/Crashlytics differ
diff --git a/Crashlytics.framework/Versions/A/Resources/Info.plist b/Crashlytics.framework/Versions/A/Resources/Info.plist
index a10d5ef..ead462e 100644
--- a/Crashlytics.framework/Versions/A/Resources/Info.plist
+++ b/Crashlytics.framework/Versions/A/Resources/Info.plist
@@ -15,13 +15,13 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
- <string>2.2.9</string>
+ <string>2.2.10</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>iPhoneOS</string>
</array>
<key>CFBundleVersion</key>
- <string>44</string>
+ <string>45</string>
<key>DTPlatformName</key>
<string>iphoneos</string>
<key>MinimumOSVersion</key>
diff --git a/Crashlytics.framework/run b/Crashlytics.framework/run
index b9211c3..c79b028 100755
Binary files a/Crashlytics.framework/run and b/Crashlytics.framework/run differ
diff --git a/Crashlytics.framework/submit b/Crashlytics.framework/submit
index 32c9ca3..65568e3 100755
Binary files a/Crashlytics.framework/submit and b/Crashlytics.framework/submit differ
diff --git a/Scripts/genmodels b/Scripts/genmodels
index 5ddb425..7b0c7aa 100755
--- a/Scripts/genmodels
+++ b/Scripts/genmodels
@@ -1,3 +1,3 @@
#/bin/bash
BASEDIR=$(dirname $0)
-mogenerator --model $BASEDIR'/../Source/Models/perimeter.xcdatamodeld/PPL Data Model 2014-12.xcdatamodel' --machine-dir $BASEDIR/../Source/Models/MachineModels --human-dir $BASEDIR/../Source/Models/HumanModels --template-var arc=true frc=true
+mogenerator --model $BASEDIR'/../Source/Models/perimeter.xcdatamodeld/PPL Data Model 2015-2.xcdatamodel' --machine-dir $BASEDIR/../Source/Models/MachineModels --human-dir $BASEDIR/../Source/Models/HumanModels --template-var arc=true frc=true
diff --git a/Source/API/PPLRestKitHelper.m b/Source/API/PPLRestKitHelper.m
index 69d4cc7..412da3b 100644
--- a/Source/API/PPLRestKitHelper.m
+++ b/Source/API/PPLRestKitHelper.m
@@ -106,7 +106,7 @@ static NSString *const kPPLPOSTInfographicPath = @"infographic";
// self.primaryObjectManager = [RKObjectManager managerWithBaseURL:[NSURL URLWithString:@"http://power-pro.appspot.com/api"]];
#else
// self.primaryObjectManager = [RKObjectManager managerWithBaseURL:[NSURL URLWithString:@"http://www.lohi-dev.power-pro.appspot.com/api"]];
- self.primaryObjectManager = [RKObjectManager managerWithBaseURL:[NSURL URLWithString:@"https://power-pro.appspot.com/api"]];
+ self.primaryObjectManager = [RKObjectManager managerWithBaseURL:[NSURL URLWithString:@"https://power-pro-dev.appspot.com/api"]];
#endif
[PPLRestKitHelper sharedRestKitHelper].primaryObjectManager.HTTPClient.parameterEncoding = AFJSONParameterEncoding;
diff --git a/Source/Models/HumanModels/GuestCard.m b/Source/Models/HumanModels/GuestCard.m
index c267770..2ffe79c 100644
--- a/Source/Models/HumanModels/GuestCard.m
+++ b/Source/Models/HumanModels/GuestCard.m
@@ -196,6 +196,7 @@ static NSDateFormatter *dayDateFormatter;
}];
[mappingByUUID addAttributeMappingsFromArray: @[GuestCardAttributes.active,
+ GuestCardAttributes.isLeadGuestCard,
GuestCardAttributes.synced,
GuestCardAttributes.lastSynced,
GuestCardAttributes.created,
diff --git a/Source/Models/MachineModels/_Amenity.h b/Source/Models/MachineModels/_Amenity.h
index c5e6a14..ed11b2c 100644
--- a/Source/Models/MachineModels/_Amenity.h
+++ b/Source/Models/MachineModels/_Amenity.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct AmenityAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *amenityId;
@@ -19,8 +20,21 @@ extern const struct AmenityRelationships {
__unsafe_unretained NSString *community;
} AmenityRelationships;
+extern const struct AmenityFetchedProperties {
+} AmenityFetchedProperties;
+
@class Community;
+
+
+
+
+
+
+
+
+
+
@interface AmenityID : NSManagedObjectID {}
@end
@@ -28,101 +42,179 @@ extern const struct AmenityRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) AmenityID* objectID;
+- (AmenityID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* amenityId;
-@property (atomic) int64_t amenityIdValue;
+
+@property int64_t amenityIdValue;
- (int64_t)amenityIdValue;
- (void)setAmenityIdValue:(int64_t)value_;
//- (BOOL)validateAmenityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* category;
+
//- (BOOL)validateCategory:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* distance;
+
//- (BOOL)validateDistance:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _Amenity (CoreDataGeneratedAccessors)
+
@end
@interface _Amenity (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveAmenityId;
- (void)setPrimitiveAmenityId:(NSNumber*)value;
- (int64_t)primitiveAmenityIdValue;
- (void)setPrimitiveAmenityIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveCategory;
- (void)setPrimitiveCategory:(NSString*)value;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSString*)primitiveDistance;
- (void)setPrimitiveDistance:(NSString*)value;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
@end
diff --git a/Source/Models/MachineModels/_Amenity.m b/Source/Models/MachineModels/_Amenity.m
index 00da711..3ed2711 100644
--- a/Source/Models/MachineModels/_Amenity.m
+++ b/Source/Models/MachineModels/_Amenity.m
@@ -19,6 +19,9 @@ const struct AmenityRelationships AmenityRelationships = {
.community = @"community",
};
+const struct AmenityFetchedProperties AmenityFetchedProperties = {
+};
+
@implementation AmenityID
@end
@@ -42,30 +45,32 @@ const struct AmenityRelationships AmenityRelationships = {
return (AmenityID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"amenityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"amenityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -84,8 +89,14 @@ const struct AmenityRelationships AmenityRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic amenityId;
+
+
- (int64_t)amenityIdValue {
NSNumber *result = [self amenityId];
return [result longLongValue];
@@ -104,20 +115,56 @@ const struct AmenityRelationships AmenityRelationships = {
[self setPrimitiveAmenityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic category;
+
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic distance;
+
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -136,7 +183,17 @@ const struct AmenityRelationships AmenityRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic community;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_ApplicationApplicant.h b/Source/Models/MachineModels/_ApplicationApplicant.h
index 04036b4..b5d2ccd 100644
--- a/Source/Models/MachineModels/_ApplicationApplicant.h
+++ b/Source/Models/MachineModels/_ApplicationApplicant.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct ApplicationApplicantAttributes {
__unsafe_unretained NSString *applicantId;
__unsafe_unretained NSString *birthDate;
@@ -32,9 +33,34 @@ extern const struct ApplicationApplicantRelationships {
__unsafe_unretained NSString *incomes;
} ApplicationApplicantRelationships;
+extern const struct ApplicationApplicantFetchedProperties {
+} ApplicationApplicantFetchedProperties;
+
@class ApplicationInfo;
@class ApplicationIncome;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@interface ApplicationApplicantID : NSManagedObjectID {}
@end
@@ -42,135 +68,231 @@ extern const struct ApplicationApplicantRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) ApplicationApplicantID* objectID;
+- (ApplicationApplicantID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* applicantId;
-@property (atomic) int64_t applicantIdValue;
+
+@property int64_t applicantIdValue;
- (int64_t)applicantIdValue;
- (void)setApplicantIdValue:(int64_t)value_;
//- (BOOL)validateApplicantId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* birthDate;
+
//- (BOOL)validateBirthDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* city;
+
//- (BOOL)validateCity:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* county;
+
//- (BOOL)validateCounty:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* criminalHistoryChargedNotResolved;
-@property (atomic) int16_t criminalHistoryChargedNotResolvedValue;
+
+@property int16_t criminalHistoryChargedNotResolvedValue;
- (int16_t)criminalHistoryChargedNotResolvedValue;
- (void)setCriminalHistoryChargedNotResolvedValue:(int16_t)value_;
//- (BOOL)validateCriminalHistoryChargedNotResolved:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* criminalHistoryChargedResolved;
-@property (atomic) int16_t criminalHistoryChargedResolvedValue;
+
+@property int16_t criminalHistoryChargedResolvedValue;
- (int16_t)criminalHistoryChargedResolvedValue;
- (void)setCriminalHistoryChargedResolvedValue:(int16_t)value_;
//- (BOOL)validateCriminalHistoryChargedResolved:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* criminalHistoryDeclaredBankruptcy;
-@property (atomic) int16_t criminalHistoryDeclaredBankruptcyValue;
+
+@property int16_t criminalHistoryDeclaredBankruptcyValue;
- (int16_t)criminalHistoryDeclaredBankruptcyValue;
- (void)setCriminalHistoryDeclaredBankruptcyValue:(int16_t)value_;
//- (BOOL)validateCriminalHistoryDeclaredBankruptcy:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* criminalHistoryEvicted;
-@property (atomic) int16_t criminalHistoryEvictedValue;
+
+@property int16_t criminalHistoryEvictedValue;
- (int16_t)criminalHistoryEvictedValue;
- (void)setCriminalHistoryEvictedValue:(int16_t)value_;
//- (BOOL)validateCriminalHistoryEvicted:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* criminalHistoryMovedOutEarly;
-@property (atomic) int16_t criminalHistoryMovedOutEarlyValue;
+
+@property int16_t criminalHistoryMovedOutEarlyValue;
- (int16_t)criminalHistoryMovedOutEarlyValue;
- (void)setCriminalHistoryMovedOutEarlyValue:(int16_t)value_;
//- (BOOL)validateCriminalHistoryMovedOutEarly:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* criminalHistoryNotes;
+
//- (BOOL)validateCriminalHistoryNotes:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* criminalHistorySuedForDamage;
-@property (atomic) int16_t criminalHistorySuedForDamageValue;
+
+@property int16_t criminalHistorySuedForDamageValue;
- (int16_t)criminalHistorySuedForDamageValue;
- (void)setCriminalHistorySuedForDamageValue:(int16_t)value_;
//- (BOOL)validateCriminalHistorySuedForDamage:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* criminalHistorySuedForRent;
-@property (atomic) int16_t criminalHistorySuedForRentValue;
+
+@property int16_t criminalHistorySuedForRentValue;
- (int16_t)criminalHistorySuedForRentValue;
- (void)setCriminalHistorySuedForRentValue:(int16_t)value_;
//- (BOOL)validateCriminalHistorySuedForRent:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* driversLicenseNumber;
+
//- (BOOL)validateDriversLicenseNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* driversLicenseState;
+
//- (BOOL)validateDriversLicenseState:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* firstName;
+
//- (BOOL)validateFirstName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* govtPhotoIDNumber;
+
//- (BOOL)validateGovtPhotoIDNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* govtPhotoIDState;
+
//- (BOOL)validateGovtPhotoIDState:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* lastName;
+
//- (BOOL)validateLastName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* postalCode;
+
//- (BOOL)validatePostalCode:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* state;
+
//- (BOOL)validateState:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* streetAddress;
+
//- (BOOL)validateStreetAddress:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) ApplicationInfo *application;
+
+
+
+
+@property (nonatomic, strong) ApplicationInfo* application;
//- (BOOL)validateApplication:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *incomes;
+
+
+
+@property (nonatomic, strong) NSSet* incomes;
- (NSMutableSet*)incomesSet;
+
+
+
+
@end
-@interface _ApplicationApplicant (IncomesCoreDataGeneratedAccessors)
+@interface _ApplicationApplicant (CoreDataGeneratedAccessors)
+
- (void)addIncomes:(NSSet*)value_;
- (void)removeIncomes:(NSSet*)value_;
- (void)addIncomesObject:(ApplicationIncome*)value_;
@@ -180,97 +302,165 @@ extern const struct ApplicationApplicantRelationships {
@interface _ApplicationApplicant (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveApplicantId;
- (void)setPrimitiveApplicantId:(NSNumber*)value;
- (int64_t)primitiveApplicantIdValue;
- (void)setPrimitiveApplicantIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveBirthDate;
- (void)setPrimitiveBirthDate:(NSDate*)value;
+
+
+
- (NSString*)primitiveCity;
- (void)setPrimitiveCity:(NSString*)value;
+
+
+
- (NSString*)primitiveCounty;
- (void)setPrimitiveCounty:(NSString*)value;
+
+
+
- (NSNumber*)primitiveCriminalHistoryChargedNotResolved;
- (void)setPrimitiveCriminalHistoryChargedNotResolved:(NSNumber*)value;
- (int16_t)primitiveCriminalHistoryChargedNotResolvedValue;
- (void)setPrimitiveCriminalHistoryChargedNotResolvedValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveCriminalHistoryChargedResolved;
- (void)setPrimitiveCriminalHistoryChargedResolved:(NSNumber*)value;
- (int16_t)primitiveCriminalHistoryChargedResolvedValue;
- (void)setPrimitiveCriminalHistoryChargedResolvedValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveCriminalHistoryDeclaredBankruptcy;
- (void)setPrimitiveCriminalHistoryDeclaredBankruptcy:(NSNumber*)value;
- (int16_t)primitiveCriminalHistoryDeclaredBankruptcyValue;
- (void)setPrimitiveCriminalHistoryDeclaredBankruptcyValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveCriminalHistoryEvicted;
- (void)setPrimitiveCriminalHistoryEvicted:(NSNumber*)value;
- (int16_t)primitiveCriminalHistoryEvictedValue;
- (void)setPrimitiveCriminalHistoryEvictedValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveCriminalHistoryMovedOutEarly;
- (void)setPrimitiveCriminalHistoryMovedOutEarly:(NSNumber*)value;
- (int16_t)primitiveCriminalHistoryMovedOutEarlyValue;
- (void)setPrimitiveCriminalHistoryMovedOutEarlyValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveCriminalHistoryNotes;
- (void)setPrimitiveCriminalHistoryNotes:(NSString*)value;
+
+
+
- (NSNumber*)primitiveCriminalHistorySuedForDamage;
- (void)setPrimitiveCriminalHistorySuedForDamage:(NSNumber*)value;
- (int16_t)primitiveCriminalHistorySuedForDamageValue;
- (void)setPrimitiveCriminalHistorySuedForDamageValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveCriminalHistorySuedForRent;
- (void)setPrimitiveCriminalHistorySuedForRent:(NSNumber*)value;
- (int16_t)primitiveCriminalHistorySuedForRentValue;
- (void)setPrimitiveCriminalHistorySuedForRentValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveDriversLicenseNumber;
- (void)setPrimitiveDriversLicenseNumber:(NSString*)value;
+
+
+
- (NSString*)primitiveDriversLicenseState;
- (void)setPrimitiveDriversLicenseState:(NSString*)value;
+
+
+
- (NSString*)primitiveFirstName;
- (void)setPrimitiveFirstName:(NSString*)value;
+
+
+
- (NSString*)primitiveGovtPhotoIDNumber;
- (void)setPrimitiveGovtPhotoIDNumber:(NSString*)value;
+
+
+
- (NSString*)primitiveGovtPhotoIDState;
- (void)setPrimitiveGovtPhotoIDState:(NSString*)value;
+
+
+
- (NSString*)primitiveLastName;
- (void)setPrimitiveLastName:(NSString*)value;
+
+
+
- (NSString*)primitivePostalCode;
- (void)setPrimitivePostalCode:(NSString*)value;
+
+
+
- (NSString*)primitiveState;
- (void)setPrimitiveState:(NSString*)value;
+
+
+
- (NSString*)primitiveStreetAddress;
- (void)setPrimitiveStreetAddress:(NSString*)value;
+
+
+
+
- (ApplicationInfo*)primitiveApplication;
- (void)setPrimitiveApplication:(ApplicationInfo*)value;
+
+
- (NSMutableSet*)primitiveIncomes;
- (void)setPrimitiveIncomes:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_ApplicationApplicant.m b/Source/Models/MachineModels/_ApplicationApplicant.m
index 5444f5c..24b5561 100644
--- a/Source/Models/MachineModels/_ApplicationApplicant.m
+++ b/Source/Models/MachineModels/_ApplicationApplicant.m
@@ -32,6 +32,9 @@ const struct ApplicationApplicantRelationships ApplicationApplicantRelationships
.incomes = @"incomes",
};
+const struct ApplicationApplicantFetchedProperties ApplicationApplicantFetchedProperties = {
+};
+
@implementation ApplicationApplicantID
@end
@@ -55,55 +58,52 @@ const struct ApplicationApplicantRelationships ApplicationApplicantRelationships
return (ApplicationApplicantID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"applicantIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"applicantId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"criminalHistoryChargedNotResolvedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"criminalHistoryChargedNotResolved"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"criminalHistoryChargedResolvedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"criminalHistoryChargedResolved"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"criminalHistoryDeclaredBankruptcyValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"criminalHistoryDeclaredBankruptcy"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"criminalHistoryEvictedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"criminalHistoryEvicted"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"criminalHistoryMovedOutEarlyValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"criminalHistoryMovedOutEarly"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"criminalHistorySuedForDamageValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"criminalHistorySuedForDamage"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"criminalHistorySuedForRentValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"criminalHistorySuedForRent"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic applicantId;
+
+
- (int64_t)applicantIdValue {
NSNumber *result = [self applicantId];
return [result longLongValue];
@@ -122,14 +122,35 @@ const struct ApplicationApplicantRelationships ApplicationApplicantRelationships
[self setPrimitiveApplicantId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic birthDate;
+
+
+
+
+
@dynamic city;
+
+
+
+
+
@dynamic county;
+
+
+
+
+
@dynamic criminalHistoryChargedNotResolved;
+
+
- (int16_t)criminalHistoryChargedNotResolvedValue {
NSNumber *result = [self criminalHistoryChargedNotResolved];
return [result shortValue];
@@ -148,8 +169,14 @@ const struct ApplicationApplicantRelationships ApplicationApplicantRelationships
[self setPrimitiveCriminalHistoryChargedNotResolved:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic criminalHistoryChargedResolved;
+
+
- (int16_t)criminalHistoryChargedResolvedValue {
NSNumber *result = [self criminalHistoryChargedResolved];
return [result shortValue];
@@ -168,8 +195,14 @@ const struct ApplicationApplicantRelationships ApplicationApplicantRelationships
[self setPrimitiveCriminalHistoryChargedResolved:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic criminalHistoryDeclaredBankruptcy;
+
+
- (int16_t)criminalHistoryDeclaredBankruptcyValue {
NSNumber *result = [self criminalHistoryDeclaredBankruptcy];
return [result shortValue];
@@ -188,8 +221,14 @@ const struct ApplicationApplicantRelationships ApplicationApplicantRelationships
[self setPrimitiveCriminalHistoryDeclaredBankruptcy:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic criminalHistoryEvicted;
+
+
- (int16_t)criminalHistoryEvictedValue {
NSNumber *result = [self criminalHistoryEvicted];
return [result shortValue];
@@ -208,8 +247,14 @@ const struct ApplicationApplicantRelationships ApplicationApplicantRelationships
[self setPrimitiveCriminalHistoryEvicted:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic criminalHistoryMovedOutEarly;
+
+
- (int16_t)criminalHistoryMovedOutEarlyValue {
NSNumber *result = [self criminalHistoryMovedOutEarly];
return [result shortValue];
@@ -228,10 +273,21 @@ const struct ApplicationApplicantRelationships ApplicationApplicantRelationships
[self setPrimitiveCriminalHistoryMovedOutEarly:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic criminalHistoryNotes;
+
+
+
+
+
@dynamic criminalHistorySuedForDamage;
+
+
- (int16_t)criminalHistorySuedForDamageValue {
NSNumber *result = [self criminalHistorySuedForDamage];
return [result shortValue];
@@ -250,8 +306,14 @@ const struct ApplicationApplicantRelationships ApplicationApplicantRelationships
[self setPrimitiveCriminalHistorySuedForDamage:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic criminalHistorySuedForRent;
+
+
- (int16_t)criminalHistorySuedForRentValue {
NSNumber *result = [self criminalHistorySuedForRent];
return [result shortValue];
@@ -270,36 +332,93 @@ const struct ApplicationApplicantRelationships ApplicationApplicantRelationships
[self setPrimitiveCriminalHistorySuedForRent:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic driversLicenseNumber;
+
+
+
+
+
@dynamic driversLicenseState;
+
+
+
+
+
@dynamic firstName;
+
+
+
+
+
@dynamic govtPhotoIDNumber;
+
+
+
+
+
@dynamic govtPhotoIDState;
+
+
+
+
+
@dynamic lastName;
+
+
+
+
+
@dynamic postalCode;
+
+
+
+
+
@dynamic state;
+
+
+
+
+
@dynamic streetAddress;
+
+
+
+
+
@dynamic application;
+
+
@dynamic incomes;
+
- (NSMutableSet*)incomesSet {
[self willAccessValueForKey:@"incomes"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"incomes"];
-
+
[self didAccessValueForKey:@"incomes"];
return result;
}
+
+
-@end
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_ApplicationEmergency.h b/Source/Models/MachineModels/_ApplicationEmergency.h
index 0af0e2d..f32ab5b 100644
--- a/Source/Models/MachineModels/_ApplicationEmergency.h
+++ b/Source/Models/MachineModels/_ApplicationEmergency.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct ApplicationEmergencyAttributes {
__unsafe_unretained NSString *city;
__unsafe_unretained NSString *emergencyId;
@@ -18,8 +19,20 @@ extern const struct ApplicationEmergencyRelationships {
__unsafe_unretained NSString *application;
} ApplicationEmergencyRelationships;
+extern const struct ApplicationEmergencyFetchedProperties {
+} ApplicationEmergencyFetchedProperties;
+
@class ApplicationInfo;
+
+
+
+
+
+
+
+
+
@interface ApplicationEmergencyID : NSManagedObjectID {}
@end
@@ -27,80 +40,151 @@ extern const struct ApplicationEmergencyRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) ApplicationEmergencyID* objectID;
+- (ApplicationEmergencyID*)objectID;
+
+
+
@property (nonatomic, strong) NSString* city;
+
//- (BOOL)validateCity:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* emergencyId;
-@property (atomic) int64_t emergencyIdValue;
+
+@property int64_t emergencyIdValue;
- (int64_t)emergencyIdValue;
- (void)setEmergencyIdValue:(int64_t)value_;
//- (BOOL)validateEmergencyId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* phoneNumber;
+
//- (BOOL)validatePhoneNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* postalCode;
+
//- (BOOL)validatePostalCode:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* relationship;
+
//- (BOOL)validateRelationship:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* state;
+
//- (BOOL)validateState:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* streetAddress;
+
//- (BOOL)validateStreetAddress:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) ApplicationInfo *application;
+
+
+
+
+@property (nonatomic, strong) ApplicationInfo* application;
//- (BOOL)validateApplication:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _ApplicationEmergency (CoreDataGeneratedAccessors)
+
@end
@interface _ApplicationEmergency (CoreDataGeneratedPrimitiveAccessors)
+
- (NSString*)primitiveCity;
- (void)setPrimitiveCity:(NSString*)value;
+
+
+
- (NSNumber*)primitiveEmergencyId;
- (void)setPrimitiveEmergencyId:(NSNumber*)value;
- (int64_t)primitiveEmergencyIdValue;
- (void)setPrimitiveEmergencyIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSString*)primitivePhoneNumber;
- (void)setPrimitivePhoneNumber:(NSString*)value;
+
+
+
- (NSString*)primitivePostalCode;
- (void)setPrimitivePostalCode:(NSString*)value;
+
+
+
- (NSString*)primitiveRelationship;
- (void)setPrimitiveRelationship:(NSString*)value;
+
+
+
- (NSString*)primitiveState;
- (void)setPrimitiveState:(NSString*)value;
+
+
+
- (NSString*)primitiveStreetAddress;
- (void)setPrimitiveStreetAddress:(NSString*)value;
+
+
+
+
- (ApplicationInfo*)primitiveApplication;
- (void)setPrimitiveApplication:(ApplicationInfo*)value;
+
@end
diff --git a/Source/Models/MachineModels/_ApplicationEmergency.m b/Source/Models/MachineModels/_ApplicationEmergency.m
index c03cbe2..b265d13 100644
--- a/Source/Models/MachineModels/_ApplicationEmergency.m
+++ b/Source/Models/MachineModels/_ApplicationEmergency.m
@@ -18,6 +18,9 @@ const struct ApplicationEmergencyRelationships ApplicationEmergencyRelationships
.application = @"application",
};
+const struct ApplicationEmergencyFetchedProperties ApplicationEmergencyFetchedProperties = {
+};
+
@implementation ApplicationEmergencyID
@end
@@ -41,22 +44,31 @@ const struct ApplicationEmergencyRelationships ApplicationEmergencyRelationships
return (ApplicationEmergencyID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"emergencyIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"emergencyId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic city;
+
+
+
+
+
@dynamic emergencyId;
+
+
- (int64_t)emergencyIdValue {
NSNumber *result = [self emergencyId];
return [result longLongValue];
@@ -75,19 +87,59 @@ const struct ApplicationEmergencyRelationships ApplicationEmergencyRelationships
[self setPrimitiveEmergencyId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic phoneNumber;
+
+
+
+
+
@dynamic postalCode;
+
+
+
+
+
@dynamic relationship;
+
+
+
+
+
@dynamic state;
+
+
+
+
+
@dynamic streetAddress;
+
+
+
+
+
@dynamic application;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_ApplicationIncome.h b/Source/Models/MachineModels/_ApplicationIncome.h
index bb40a7f..ea23c28 100644
--- a/Source/Models/MachineModels/_ApplicationIncome.h
+++ b/Source/Models/MachineModels/_ApplicationIncome.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct ApplicationIncomeAttributes {
__unsafe_unretained NSString *applicantId;
__unsafe_unretained NSString *city;
@@ -25,9 +26,27 @@ extern const struct ApplicationIncomeRelationships {
__unsafe_unretained NSString *application;
} ApplicationIncomeRelationships;
+extern const struct ApplicationIncomeFetchedProperties {
+} ApplicationIncomeFetchedProperties;
+
@class ApplicationApplicant;
@class ApplicationInfo;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@interface ApplicationIncomeID : NSManagedObjectID {}
@end
@@ -35,136 +54,254 @@ extern const struct ApplicationIncomeRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) ApplicationIncomeID* objectID;
+- (ApplicationIncomeID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* applicantId;
-@property (atomic) int64_t applicantIdValue;
+
+@property int64_t applicantIdValue;
- (int64_t)applicantIdValue;
- (void)setApplicantIdValue:(int64_t)value_;
//- (BOOL)validateApplicantId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* city;
+
//- (BOOL)validateCity:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* employerName;
+
//- (BOOL)validateEmployerName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* employerPhoneNumber;
+
//- (BOOL)validateEmployerPhoneNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* incomeId;
-@property (atomic) int64_t incomeIdValue;
+
+@property int64_t incomeIdValue;
- (int64_t)incomeIdValue;
- (void)setIncomeIdValue:(int64_t)value_;
//- (BOOL)validateIncomeId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* lengthOfService;
+
//- (BOOL)validateLengthOfService:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDecimalNumber* monthlyGrossIncome;
+
//- (BOOL)validateMonthlyGrossIncome:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* postalCode;
+
//- (BOOL)validatePostalCode:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* state;
+
//- (BOOL)validateState:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* streetAddress;
+
//- (BOOL)validateStreetAddress:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* supervisorFirstName;
+
//- (BOOL)validateSupervisorFirstName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* supervisorLastName;
+
//- (BOOL)validateSupervisorLastName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* supervisorPhoneNumber;
+
//- (BOOL)validateSupervisorPhoneNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* title;
+
//- (BOOL)validateTitle:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) ApplicationApplicant *applicantForIncome;
+
+
+
+
+@property (nonatomic, strong) ApplicationApplicant* applicantForIncome;
//- (BOOL)validateApplicantForIncome:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) ApplicationInfo *application;
+
+
+
+@property (nonatomic, strong) ApplicationInfo* application;
//- (BOOL)validateApplication:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _ApplicationIncome (CoreDataGeneratedAccessors)
+
@end
@interface _ApplicationIncome (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveApplicantId;
- (void)setPrimitiveApplicantId:(NSNumber*)value;
- (int64_t)primitiveApplicantIdValue;
- (void)setPrimitiveApplicantIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveCity;
- (void)setPrimitiveCity:(NSString*)value;
+
+
+
- (NSString*)primitiveEmployerName;
- (void)setPrimitiveEmployerName:(NSString*)value;
+
+
+
- (NSString*)primitiveEmployerPhoneNumber;
- (void)setPrimitiveEmployerPhoneNumber:(NSString*)value;
+
+
+
- (NSNumber*)primitiveIncomeId;
- (void)setPrimitiveIncomeId:(NSNumber*)value;
- (int64_t)primitiveIncomeIdValue;
- (void)setPrimitiveIncomeIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveLengthOfService;
- (void)setPrimitiveLengthOfService:(NSString*)value;
+
+
+
- (NSDecimalNumber*)primitiveMonthlyGrossIncome;
- (void)setPrimitiveMonthlyGrossIncome:(NSDecimalNumber*)value;
+
+
+
- (NSString*)primitivePostalCode;
- (void)setPrimitivePostalCode:(NSString*)value;
+
+
+
- (NSString*)primitiveState;
- (void)setPrimitiveState:(NSString*)value;
+
+
+
- (NSString*)primitiveStreetAddress;
- (void)setPrimitiveStreetAddress:(NSString*)value;
+
+
+
- (NSString*)primitiveSupervisorFirstName;
- (void)setPrimitiveSupervisorFirstName:(NSString*)value;
+
+
+
- (NSString*)primitiveSupervisorLastName;
- (void)setPrimitiveSupervisorLastName:(NSString*)value;
+
+
+
- (NSString*)primitiveSupervisorPhoneNumber;
- (void)setPrimitiveSupervisorPhoneNumber:(NSString*)value;
+
+
+
- (NSString*)primitiveTitle;
- (void)setPrimitiveTitle:(NSString*)value;
+
+
+
+
- (ApplicationApplicant*)primitiveApplicantForIncome;
- (void)setPrimitiveApplicantForIncome:(ApplicationApplicant*)value;
+
+
- (ApplicationInfo*)primitiveApplication;
- (void)setPrimitiveApplication:(ApplicationInfo*)value;
+
@end
diff --git a/Source/Models/MachineModels/_ApplicationIncome.m b/Source/Models/MachineModels/_ApplicationIncome.m
index 5ef7bd4..ba26f46 100644
--- a/Source/Models/MachineModels/_ApplicationIncome.m
+++ b/Source/Models/MachineModels/_ApplicationIncome.m
@@ -25,6 +25,9 @@ const struct ApplicationIncomeRelationships ApplicationIncomeRelationships = {
.application = @"application",
};
+const struct ApplicationIncomeFetchedProperties ApplicationIncomeFetchedProperties = {
+};
+
@implementation ApplicationIncomeID
@end
@@ -48,25 +51,28 @@ const struct ApplicationIncomeRelationships ApplicationIncomeRelationships = {
return (ApplicationIncomeID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"applicantIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"applicantId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"incomeIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"incomeId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic applicantId;
+
+
- (int64_t)applicantIdValue {
NSNumber *result = [self applicantId];
return [result longLongValue];
@@ -85,14 +91,35 @@ const struct ApplicationIncomeRelationships ApplicationIncomeRelationships = {
[self setPrimitiveApplicantId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic city;
+
+
+
+
+
@dynamic employerName;
+
+
+
+
+
@dynamic employerPhoneNumber;
+
+
+
+
+
@dynamic incomeId;
+
+
- (int64_t)incomeIdValue {
NSNumber *result = [self incomeId];
return [result longLongValue];
@@ -111,27 +138,84 @@ const struct ApplicationIncomeRelationships ApplicationIncomeRelationships = {
[self setPrimitiveIncomeId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic lengthOfService;
+
+
+
+
+
@dynamic monthlyGrossIncome;
+
+
+
+
+
@dynamic postalCode;
+
+
+
+
+
@dynamic state;
+
+
+
+
+
@dynamic streetAddress;
+
+
+
+
+
@dynamic supervisorFirstName;
+
+
+
+
+
@dynamic supervisorLastName;
+
+
+
+
+
@dynamic supervisorPhoneNumber;
+
+
+
+
+
@dynamic title;
+
+
+
+
+
@dynamic applicantForIncome;
+
+
@dynamic application;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_ApplicationInfo.h b/Source/Models/MachineModels/_ApplicationInfo.h
index c94a320..5dad084 100644
--- a/Source/Models/MachineModels/_ApplicationInfo.h
+++ b/Source/Models/MachineModels/_ApplicationInfo.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct ApplicationInfoAttributes {
__unsafe_unretained NSString *agreeToTerms;
__unsafe_unretained NSString *applicationId;
@@ -27,6 +28,9 @@ extern const struct ApplicationInfoRelationships {
__unsafe_unretained NSString *vehicles;
} ApplicationInfoRelationships;
+extern const struct ApplicationInfoFetchedProperties {
+} ApplicationInfoFetchedProperties;
+
@class ApplicationApplicant;
@class ApplicationEmergency;
@class GuestCard;
@@ -36,6 +40,17 @@ extern const struct ApplicationInfoRelationships {
@class ApplicationRentalHistory;
@class ApplicationVehicle;
+
+
+
+
+
+
+
+
+
+
+
@interface ApplicationInfoID : NSManagedObjectID {}
@end
@@ -43,268 +58,328 @@ extern const struct ApplicationInfoRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) ApplicationInfoID* objectID;
+- (ApplicationInfoID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* agreeToTerms;
-@property (atomic) BOOL agreeToTermsValue;
+
+@property BOOL agreeToTermsValue;
- (BOOL)agreeToTermsValue;
- (void)setAgreeToTermsValue:(BOOL)value_;
//- (BOOL)validateAgreeToTerms:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* applicationId;
-@property (atomic) int64_t applicationIdValue;
+
+@property int64_t applicationIdValue;
- (int64_t)applicationIdValue;
- (void)setApplicationIdValue:(int64_t)value_;
//- (BOOL)validateApplicationId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* draft;
-@property (atomic) BOOL draftValue;
+
+@property BOOL draftValue;
- (BOOL)draftValue;
- (void)setDraftValue:(BOOL)value_;
//- (BOOL)validateDraft:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* guestCardId;
-@property (atomic) int64_t guestCardIdValue;
+
+@property int64_t guestCardIdValue;
- (int64_t)guestCardIdValue;
- (void)setGuestCardIdValue:(int64_t)value_;
//- (BOOL)validateGuestCardId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* prospectiveTenantId;
-@property (atomic) int64_t prospectiveTenantIdValue;
+
+@property int64_t prospectiveTenantIdValue;
- (int64_t)prospectiveTenantIdValue;
- (void)setProspectiveTenantIdValue:(int64_t)value_;
//- (BOOL)validateProspectiveTenantId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSData* signatureImageData;
+
//- (BOOL)validateSignatureImageData:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* signatureURL;
+
//- (BOOL)validateSignatureURL:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* ssn;
+
//- (BOOL)validateSsn:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSOrderedSet *applicants;
+
+
+
+
+@property (nonatomic, strong) NSOrderedSet* applicants;
- (NSMutableOrderedSet*)applicantsSet;
-@property (nonatomic, strong) NSOrderedSet *emergencies;
+
+
+
+@property (nonatomic, strong) NSOrderedSet* emergencies;
- (NSMutableOrderedSet*)emergenciesSet;
-@property (nonatomic, strong) GuestCard *guestCard;
+
+
+
+@property (nonatomic, strong) GuestCard* guestCard;
//- (BOOL)validateGuestCard:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSOrderedSet *incomes;
+
+
+
+@property (nonatomic, strong) NSOrderedSet* incomes;
- (NSMutableOrderedSet*)incomesSet;
-@property (nonatomic, strong) NSOrderedSet *otherOccupants;
+
+
+
+@property (nonatomic, strong) NSOrderedSet* otherOccupants;
- (NSMutableOrderedSet*)otherOccupantsSet;
-@property (nonatomic, strong) ProspectiveTenant *prospectiveTenant;
+
+
+
+@property (nonatomic, strong) ProspectiveTenant* prospectiveTenant;
//- (BOOL)validateProspectiveTenant:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSOrderedSet *rentalHistories;
+
+
+
+@property (nonatomic, strong) NSOrderedSet* rentalHistories;
- (NSMutableOrderedSet*)rentalHistoriesSet;
-@property (nonatomic, strong) NSOrderedSet *vehicles;
+
+
+
+@property (nonatomic, strong) NSOrderedSet* vehicles;
- (NSMutableOrderedSet*)vehiclesSet;
+
+
+
+
@end
-@interface _ApplicationInfo (ApplicantsCoreDataGeneratedAccessors)
+@interface _ApplicationInfo (CoreDataGeneratedAccessors)
+
- (void)addApplicants:(NSOrderedSet*)value_;
- (void)removeApplicants:(NSOrderedSet*)value_;
- (void)addApplicantsObject:(ApplicationApplicant*)value_;
- (void)removeApplicantsObject:(ApplicationApplicant*)value_;
-- (void)insertObject:(ApplicationApplicant*)value inApplicantsAtIndex:(NSUInteger)idx;
-- (void)removeObjectFromApplicantsAtIndex:(NSUInteger)idx;
-- (void)insertApplicants:(NSArray *)value atIndexes:(NSIndexSet *)indexes;
-- (void)removeApplicantsAtIndexes:(NSIndexSet *)indexes;
-- (void)replaceObjectInApplicantsAtIndex:(NSUInteger)idx withObject:(ApplicationApplicant*)value;
-- (void)replaceApplicantsAtIndexes:(NSIndexSet *)indexes withApplicants:(NSArray *)values;
-
-@end
-
-@interface _ApplicationInfo (EmergenciesCoreDataGeneratedAccessors)
- (void)addEmergencies:(NSOrderedSet*)value_;
- (void)removeEmergencies:(NSOrderedSet*)value_;
- (void)addEmergenciesObject:(ApplicationEmergency*)value_;
- (void)removeEmergenciesObject:(ApplicationEmergency*)value_;
-- (void)insertObject:(ApplicationEmergency*)value inEmergenciesAtIndex:(NSUInteger)idx;
-- (void)removeObjectFromEmergenciesAtIndex:(NSUInteger)idx;
-- (void)insertEmergencies:(NSArray *)value atIndexes:(NSIndexSet *)indexes;
-- (void)removeEmergenciesAtIndexes:(NSIndexSet *)indexes;
-- (void)replaceObjectInEmergenciesAtIndex:(NSUInteger)idx withObject:(ApplicationEmergency*)value;
-- (void)replaceEmergenciesAtIndexes:(NSIndexSet *)indexes withEmergencies:(NSArray *)values;
-
-@end
-
-@interface _ApplicationInfo (IncomesCoreDataGeneratedAccessors)
- (void)addIncomes:(NSOrderedSet*)value_;
- (void)removeIncomes:(NSOrderedSet*)value_;
- (void)addIncomesObject:(ApplicationIncome*)value_;
- (void)removeIncomesObject:(ApplicationIncome*)value_;
-- (void)insertObject:(ApplicationIncome*)value inIncomesAtIndex:(NSUInteger)idx;
-- (void)removeObjectFromIncomesAtIndex:(NSUInteger)idx;
-- (void)insertIncomes:(NSArray *)value atIndexes:(NSIndexSet *)indexes;
-- (void)removeIncomesAtIndexes:(NSIndexSet *)indexes;
-- (void)replaceObjectInIncomesAtIndex:(NSUInteger)idx withObject:(ApplicationIncome*)value;
-- (void)replaceIncomesAtIndexes:(NSIndexSet *)indexes withIncomes:(NSArray *)values;
-
-@end
-
-@interface _ApplicationInfo (OtherOccupantsCoreDataGeneratedAccessors)
- (void)addOtherOccupants:(NSOrderedSet*)value_;
- (void)removeOtherOccupants:(NSOrderedSet*)value_;
- (void)addOtherOccupantsObject:(ApplicationOccupant*)value_;
- (void)removeOtherOccupantsObject:(ApplicationOccupant*)value_;
-- (void)insertObject:(ApplicationOccupant*)value inOtherOccupantsAtIndex:(NSUInteger)idx;
-- (void)removeObjectFromOtherOccupantsAtIndex:(NSUInteger)idx;
-- (void)insertOtherOccupants:(NSArray *)value atIndexes:(NSIndexSet *)indexes;
-- (void)removeOtherOccupantsAtIndexes:(NSIndexSet *)indexes;
-- (void)replaceObjectInOtherOccupantsAtIndex:(NSUInteger)idx withObject:(ApplicationOccupant*)value;
-- (void)replaceOtherOccupantsAtIndexes:(NSIndexSet *)indexes withOtherOccupants:(NSArray *)values;
-
-@end
-
-@interface _ApplicationInfo (RentalHistoriesCoreDataGeneratedAccessors)
- (void)addRentalHistories:(NSOrderedSet*)value_;
- (void)removeRentalHistories:(NSOrderedSet*)value_;
- (void)addRentalHistoriesObject:(ApplicationRentalHistory*)value_;
- (void)removeRentalHistoriesObject:(ApplicationRentalHistory*)value_;
-- (void)insertObject:(ApplicationRentalHistory*)value inRentalHistoriesAtIndex:(NSUInteger)idx;
-- (void)removeObjectFromRentalHistoriesAtIndex:(NSUInteger)idx;
-- (void)insertRentalHistories:(NSArray *)value atIndexes:(NSIndexSet *)indexes;
-- (void)removeRentalHistoriesAtIndexes:(NSIndexSet *)indexes;
-- (void)replaceObjectInRentalHistoriesAtIndex:(NSUInteger)idx withObject:(ApplicationRentalHistory*)value;
-- (void)replaceRentalHistoriesAtIndexes:(NSIndexSet *)indexes withRentalHistories:(NSArray *)values;
-
-@end
-
-@interface _ApplicationInfo (VehiclesCoreDataGeneratedAccessors)
- (void)addVehicles:(NSOrderedSet*)value_;
- (void)removeVehicles:(NSOrderedSet*)value_;
- (void)addVehiclesObject:(ApplicationVehicle*)value_;
- (void)removeVehiclesObject:(ApplicationVehicle*)value_;
-- (void)insertObject:(ApplicationVehicle*)value inVehiclesAtIndex:(NSUInteger)idx;
-- (void)removeObjectFromVehiclesAtIndex:(NSUInteger)idx;
-- (void)insertVehicles:(NSArray *)value atIndexes:(NSIndexSet *)indexes;
-- (void)removeVehiclesAtIndexes:(NSIndexSet *)indexes;
-- (void)replaceObjectInVehiclesAtIndex:(NSUInteger)idx withObject:(ApplicationVehicle*)value;
-- (void)replaceVehiclesAtIndexes:(NSIndexSet *)indexes withVehicles:(NSArray *)values;
-
@end
@interface _ApplicationInfo (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveAgreeToTerms;
- (void)setPrimitiveAgreeToTerms:(NSNumber*)value;
- (BOOL)primitiveAgreeToTermsValue;
- (void)setPrimitiveAgreeToTermsValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveApplicationId;
- (void)setPrimitiveApplicationId:(NSNumber*)value;
- (int64_t)primitiveApplicationIdValue;
- (void)setPrimitiveApplicationIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveDraft;
- (void)setPrimitiveDraft:(NSNumber*)value;
- (BOOL)primitiveDraftValue;
- (void)setPrimitiveDraftValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveGuestCardId;
- (void)setPrimitiveGuestCardId:(NSNumber*)value;
- (int64_t)primitiveGuestCardIdValue;
- (void)setPrimitiveGuestCardIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveProspectiveTenantId;
- (void)setPrimitiveProspectiveTenantId:(NSNumber*)value;
- (int64_t)primitiveProspectiveTenantIdValue;
- (void)setPrimitiveProspectiveTenantIdValue:(int64_t)value_;
+
+
+
- (NSData*)primitiveSignatureImageData;
- (void)setPrimitiveSignatureImageData:(NSData*)value;
+
+
+
- (NSString*)primitiveSignatureURL;
- (void)setPrimitiveSignatureURL:(NSString*)value;
+
+
+
- (NSString*)primitiveSsn;
- (void)setPrimitiveSsn:(NSString*)value;
+
+
+
+
- (NSMutableOrderedSet*)primitiveApplicants;
- (void)setPrimitiveApplicants:(NSMutableOrderedSet*)value;
+
+
- (NSMutableOrderedSet*)primitiveEmergencies;
- (void)setPrimitiveEmergencies:(NSMutableOrderedSet*)value;
+
+
- (GuestCard*)primitiveGuestCard;
- (void)setPrimitiveGuestCard:(GuestCard*)value;
+
+
- (NSMutableOrderedSet*)primitiveIncomes;
- (void)setPrimitiveIncomes:(NSMutableOrderedSet*)value;
+
+
- (NSMutableOrderedSet*)primitiveOtherOccupants;
- (void)setPrimitiveOtherOccupants:(NSMutableOrderedSet*)value;
+
+
- (ProspectiveTenant*)primitiveProspectiveTenant;
- (void)setPrimitiveProspectiveTenant:(ProspectiveTenant*)value;
+
+
- (NSMutableOrderedSet*)primitiveRentalHistories;
- (void)setPrimitiveRentalHistories:(NSMutableOrderedSet*)value;
+
+
- (NSMutableOrderedSet*)primitiveVehicles;
- (void)setPrimitiveVehicles:(NSMutableOrderedSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_ApplicationInfo.m b/Source/Models/MachineModels/_ApplicationInfo.m
index 4888eea..70fbd9f 100644
--- a/Source/Models/MachineModels/_ApplicationInfo.m
+++ b/Source/Models/MachineModels/_ApplicationInfo.m
@@ -27,6 +27,9 @@ const struct ApplicationInfoRelationships ApplicationInfoRelationships = {
.vehicles = @"vehicles",
};
+const struct ApplicationInfoFetchedProperties ApplicationInfoFetchedProperties = {
+};
+
@implementation ApplicationInfoID
@end
@@ -50,45 +53,44 @@ const struct ApplicationInfoRelationships ApplicationInfoRelationships = {
return (ApplicationInfoID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"agreeToTermsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"agreeToTerms"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"applicationIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"applicationId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"draftValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"draft"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"guestCardIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"guestCardId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"prospectiveTenantIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"prospectiveTenantId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic agreeToTerms;
+
+
- (BOOL)agreeToTermsValue {
NSNumber *result = [self agreeToTerms];
return [result boolValue];
@@ -107,8 +109,14 @@ const struct ApplicationInfoRelationships ApplicationInfoRelationships = {
[self setPrimitiveAgreeToTerms:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic applicationId;
+
+
- (int64_t)applicationIdValue {
NSNumber *result = [self applicationId];
return [result longLongValue];
@@ -127,8 +135,14 @@ const struct ApplicationInfoRelationships ApplicationInfoRelationships = {
[self setPrimitiveApplicationId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -147,8 +161,14 @@ const struct ApplicationInfoRelationships ApplicationInfoRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic draft;
+
+
- (BOOL)draftValue {
NSNumber *result = [self draft];
return [result boolValue];
@@ -167,8 +187,14 @@ const struct ApplicationInfoRelationships ApplicationInfoRelationships = {
[self setPrimitiveDraft:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic guestCardId;
+
+
- (int64_t)guestCardIdValue {
NSNumber *result = [self guestCardId];
return [result longLongValue];
@@ -187,10 +213,21 @@ const struct ApplicationInfoRelationships ApplicationInfoRelationships = {
[self setPrimitiveGuestCardId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic prospectiveTenantId;
+
+
- (int64_t)prospectiveTenantIdValue {
NSNumber *result = [self prospectiveTenantId];
return [result longLongValue];
@@ -209,441 +246,120 @@ const struct ApplicationInfoRelationships ApplicationInfoRelationships = {
[self setPrimitiveProspectiveTenantId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic signatureImageData;
+
+
+
+
+
@dynamic signatureURL;
+
+
+
+
+
@dynamic ssn;
+
+
+
+
+
@dynamic applicants;
+
- (NSMutableOrderedSet*)applicantsSet {
[self willAccessValueForKey:@"applicants"];
-
+
NSMutableOrderedSet *result = (NSMutableOrderedSet*)[self mutableOrderedSetValueForKey:@"applicants"];
-
+
[self didAccessValueForKey:@"applicants"];
return result;
}
+
@dynamic emergencies;
+
- (NSMutableOrderedSet*)emergenciesSet {
[self willAccessValueForKey:@"emergencies"];
-
+
NSMutableOrderedSet *result = (NSMutableOrderedSet*)[self mutableOrderedSetValueForKey:@"emergencies"];
-
+
[self didAccessValueForKey:@"emergencies"];
return result;
}
+
@dynamic guestCard;
+
+
@dynamic incomes;
+
- (NSMutableOrderedSet*)incomesSet {
[self willAccessValueForKey:@"incomes"];
-
+
NSMutableOrderedSet *result = (NSMutableOrderedSet*)[self mutableOrderedSetValueForKey:@"incomes"];
-
+
[self didAccessValueForKey:@"incomes"];
return result;
}
+
@dynamic otherOccupants;
+
- (NSMutableOrderedSet*)otherOccupantsSet {
[self willAccessValueForKey:@"otherOccupants"];
-
+
NSMutableOrderedSet *result = (NSMutableOrderedSet*)[self mutableOrderedSetValueForKey:@"otherOccupants"];
-
+
[self didAccessValueForKey:@"otherOccupants"];
return result;
}
+
@dynamic prospectiveTenant;
+
+
@dynamic rentalHistories;
+
- (NSMutableOrderedSet*)rentalHistoriesSet {
[self willAccessValueForKey:@"rentalHistories"];
-
+
NSMutableOrderedSet *result = (NSMutableOrderedSet*)[self mutableOrderedSetValueForKey:@"rentalHistories"];
-
+
[self didAccessValueForKey:@"rentalHistories"];
return result;
}
+
@dynamic vehicles;
+
- (NSMutableOrderedSet*)vehiclesSet {
[self willAccessValueForKey:@"vehicles"];
-
+
NSMutableOrderedSet *result = (NSMutableOrderedSet*)[self mutableOrderedSetValueForKey:@"vehicles"];
-
+
[self didAccessValueForKey:@"vehicles"];
return result;
}
+
-@end
-
-@implementation _ApplicationInfo (ApplicantsCoreDataGeneratedAccessors)
-- (void)addApplicants:(NSOrderedSet*)value_ {
- [self.applicantsSet unionOrderedSet:value_];
-}
-- (void)removeApplicants:(NSOrderedSet*)value_ {
- [self.applicantsSet minusOrderedSet:value_];
-}
-- (void)addApplicantsObject:(ApplicationApplicant*)value_ {
- [self.applicantsSet addObject:value_];
-}
-- (void)removeApplicantsObject:(ApplicationApplicant*)value_ {
- [self.applicantsSet removeObject:value_];
-}
-- (void)insertObject:(ApplicationApplicant*)value inApplicantsAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"applicants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self applicants]];
- [tmpOrderedSet insertObject:value atIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"applicants"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"applicants"];
-}
-- (void)removeObjectFromApplicantsAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"applicants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self applicants]];
- [tmpOrderedSet removeObjectAtIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"applicants"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"applicants"];
-}
-- (void)insertApplicants:(NSArray *)value atIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"applicants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self applicants]];
- [tmpOrderedSet insertObjects:value atIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"applicants"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"applicants"];
-}
-- (void)removeApplicantsAtIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"applicants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self applicants]];
- [tmpOrderedSet removeObjectsAtIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"applicants"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"applicants"];
-}
-- (void)replaceObjectInApplicantsAtIndex:(NSUInteger)idx withObject:(ApplicationApplicant*)value {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"applicants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self applicants]];
- [tmpOrderedSet replaceObjectAtIndex:idx withObject:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"applicants"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"applicants"];
-}
-- (void)replaceApplicantsAtIndexes:(NSIndexSet *)indexes withApplicants:(NSArray *)value {
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"applicants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self applicants]];
- [tmpOrderedSet replaceObjectsAtIndexes:indexes withObjects:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"applicants"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"applicants"];
-}
-@end
-@implementation _ApplicationInfo (EmergenciesCoreDataGeneratedAccessors)
-- (void)addEmergencies:(NSOrderedSet*)value_ {
- [self.emergenciesSet unionOrderedSet:value_];
-}
-- (void)removeEmergencies:(NSOrderedSet*)value_ {
- [self.emergenciesSet minusOrderedSet:value_];
-}
-- (void)addEmergenciesObject:(ApplicationEmergency*)value_ {
- [self.emergenciesSet addObject:value_];
-}
-- (void)removeEmergenciesObject:(ApplicationEmergency*)value_ {
- [self.emergenciesSet removeObject:value_];
-}
-- (void)insertObject:(ApplicationEmergency*)value inEmergenciesAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"emergencies"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self emergencies]];
- [tmpOrderedSet insertObject:value atIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"emergencies"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"emergencies"];
-}
-- (void)removeObjectFromEmergenciesAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"emergencies"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self emergencies]];
- [tmpOrderedSet removeObjectAtIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"emergencies"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"emergencies"];
-}
-- (void)insertEmergencies:(NSArray *)value atIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"emergencies"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self emergencies]];
- [tmpOrderedSet insertObjects:value atIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"emergencies"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"emergencies"];
-}
-- (void)removeEmergenciesAtIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"emergencies"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self emergencies]];
- [tmpOrderedSet removeObjectsAtIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"emergencies"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"emergencies"];
-}
-- (void)replaceObjectInEmergenciesAtIndex:(NSUInteger)idx withObject:(ApplicationEmergency*)value {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"emergencies"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self emergencies]];
- [tmpOrderedSet replaceObjectAtIndex:idx withObject:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"emergencies"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"emergencies"];
-}
-- (void)replaceEmergenciesAtIndexes:(NSIndexSet *)indexes withEmergencies:(NSArray *)value {
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"emergencies"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self emergencies]];
- [tmpOrderedSet replaceObjectsAtIndexes:indexes withObjects:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"emergencies"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"emergencies"];
-}
-@end
-@implementation _ApplicationInfo (IncomesCoreDataGeneratedAccessors)
-- (void)addIncomes:(NSOrderedSet*)value_ {
- [self.incomesSet unionOrderedSet:value_];
-}
-- (void)removeIncomes:(NSOrderedSet*)value_ {
- [self.incomesSet minusOrderedSet:value_];
-}
-- (void)addIncomesObject:(ApplicationIncome*)value_ {
- [self.incomesSet addObject:value_];
-}
-- (void)removeIncomesObject:(ApplicationIncome*)value_ {
- [self.incomesSet removeObject:value_];
-}
-- (void)insertObject:(ApplicationIncome*)value inIncomesAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"incomes"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self incomes]];
- [tmpOrderedSet insertObject:value atIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"incomes"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"incomes"];
-}
-- (void)removeObjectFromIncomesAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"incomes"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self incomes]];
- [tmpOrderedSet removeObjectAtIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"incomes"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"incomes"];
-}
-- (void)insertIncomes:(NSArray *)value atIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"incomes"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self incomes]];
- [tmpOrderedSet insertObjects:value atIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"incomes"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"incomes"];
-}
-- (void)removeIncomesAtIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"incomes"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self incomes]];
- [tmpOrderedSet removeObjectsAtIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"incomes"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"incomes"];
-}
-- (void)replaceObjectInIncomesAtIndex:(NSUInteger)idx withObject:(ApplicationIncome*)value {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"incomes"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self incomes]];
- [tmpOrderedSet replaceObjectAtIndex:idx withObject:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"incomes"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"incomes"];
-}
-- (void)replaceIncomesAtIndexes:(NSIndexSet *)indexes withIncomes:(NSArray *)value {
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"incomes"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self incomes]];
- [tmpOrderedSet replaceObjectsAtIndexes:indexes withObjects:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"incomes"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"incomes"];
-}
-@end
-@implementation _ApplicationInfo (OtherOccupantsCoreDataGeneratedAccessors)
-- (void)addOtherOccupants:(NSOrderedSet*)value_ {
- [self.otherOccupantsSet unionOrderedSet:value_];
-}
-- (void)removeOtherOccupants:(NSOrderedSet*)value_ {
- [self.otherOccupantsSet minusOrderedSet:value_];
-}
-- (void)addOtherOccupantsObject:(ApplicationOccupant*)value_ {
- [self.otherOccupantsSet addObject:value_];
-}
-- (void)removeOtherOccupantsObject:(ApplicationOccupant*)value_ {
- [self.otherOccupantsSet removeObject:value_];
-}
-- (void)insertObject:(ApplicationOccupant*)value inOtherOccupantsAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"otherOccupants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self otherOccupants]];
- [tmpOrderedSet insertObject:value atIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"otherOccupants"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"otherOccupants"];
-}
-- (void)removeObjectFromOtherOccupantsAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"otherOccupants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self otherOccupants]];
- [tmpOrderedSet removeObjectAtIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"otherOccupants"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"otherOccupants"];
-}
-- (void)insertOtherOccupants:(NSArray *)value atIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"otherOccupants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self otherOccupants]];
- [tmpOrderedSet insertObjects:value atIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"otherOccupants"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"otherOccupants"];
-}
-- (void)removeOtherOccupantsAtIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"otherOccupants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self otherOccupants]];
- [tmpOrderedSet removeObjectsAtIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"otherOccupants"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"otherOccupants"];
-}
-- (void)replaceObjectInOtherOccupantsAtIndex:(NSUInteger)idx withObject:(ApplicationOccupant*)value {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"otherOccupants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self otherOccupants]];
- [tmpOrderedSet replaceObjectAtIndex:idx withObject:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"otherOccupants"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"otherOccupants"];
-}
-- (void)replaceOtherOccupantsAtIndexes:(NSIndexSet *)indexes withOtherOccupants:(NSArray *)value {
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"otherOccupants"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self otherOccupants]];
- [tmpOrderedSet replaceObjectsAtIndexes:indexes withObjects:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"otherOccupants"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"otherOccupants"];
-}
-@end
-@implementation _ApplicationInfo (RentalHistoriesCoreDataGeneratedAccessors)
-- (void)addRentalHistories:(NSOrderedSet*)value_ {
- [self.rentalHistoriesSet unionOrderedSet:value_];
-}
-- (void)removeRentalHistories:(NSOrderedSet*)value_ {
- [self.rentalHistoriesSet minusOrderedSet:value_];
-}
-- (void)addRentalHistoriesObject:(ApplicationRentalHistory*)value_ {
- [self.rentalHistoriesSet addObject:value_];
-}
-- (void)removeRentalHistoriesObject:(ApplicationRentalHistory*)value_ {
- [self.rentalHistoriesSet removeObject:value_];
-}
-- (void)insertObject:(ApplicationRentalHistory*)value inRentalHistoriesAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"rentalHistories"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self rentalHistories]];
- [tmpOrderedSet insertObject:value atIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"rentalHistories"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"rentalHistories"];
-}
-- (void)removeObjectFromRentalHistoriesAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"rentalHistories"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self rentalHistories]];
- [tmpOrderedSet removeObjectAtIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"rentalHistories"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"rentalHistories"];
-}
-- (void)insertRentalHistories:(NSArray *)value atIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"rentalHistories"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self rentalHistories]];
- [tmpOrderedSet insertObjects:value atIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"rentalHistories"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"rentalHistories"];
-}
-- (void)removeRentalHistoriesAtIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"rentalHistories"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self rentalHistories]];
- [tmpOrderedSet removeObjectsAtIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"rentalHistories"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"rentalHistories"];
-}
-- (void)replaceObjectInRentalHistoriesAtIndex:(NSUInteger)idx withObject:(ApplicationRentalHistory*)value {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"rentalHistories"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self rentalHistories]];
- [tmpOrderedSet replaceObjectAtIndex:idx withObject:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"rentalHistories"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"rentalHistories"];
-}
-- (void)replaceRentalHistoriesAtIndexes:(NSIndexSet *)indexes withRentalHistories:(NSArray *)value {
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"rentalHistories"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self rentalHistories]];
- [tmpOrderedSet replaceObjectsAtIndexes:indexes withObjects:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"rentalHistories"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"rentalHistories"];
-}
-@end
-@implementation _ApplicationInfo (VehiclesCoreDataGeneratedAccessors)
-- (void)addVehicles:(NSOrderedSet*)value_ {
- [self.vehiclesSet unionOrderedSet:value_];
-}
-- (void)removeVehicles:(NSOrderedSet*)value_ {
- [self.vehiclesSet minusOrderedSet:value_];
-}
-- (void)addVehiclesObject:(ApplicationVehicle*)value_ {
- [self.vehiclesSet addObject:value_];
-}
-- (void)removeVehiclesObject:(ApplicationVehicle*)value_ {
- [self.vehiclesSet removeObject:value_];
-}
-- (void)insertObject:(ApplicationVehicle*)value inVehiclesAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"vehicles"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self vehicles]];
- [tmpOrderedSet insertObject:value atIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"vehicles"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"vehicles"];
-}
-- (void)removeObjectFromVehiclesAtIndex:(NSUInteger)idx {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"vehicles"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self vehicles]];
- [tmpOrderedSet removeObjectAtIndex:idx];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"vehicles"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"vehicles"];
-}
-- (void)insertVehicles:(NSArray *)value atIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"vehicles"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self vehicles]];
- [tmpOrderedSet insertObjects:value atIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"vehicles"];
- [self didChange:NSKeyValueChangeInsertion valuesAtIndexes:indexes forKey:@"vehicles"];
-}
-- (void)removeVehiclesAtIndexes:(NSIndexSet *)indexes {
- [self willChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"vehicles"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self vehicles]];
- [tmpOrderedSet removeObjectsAtIndexes:indexes];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"vehicles"];
- [self didChange:NSKeyValueChangeRemoval valuesAtIndexes:indexes forKey:@"vehicles"];
-}
-- (void)replaceObjectInVehiclesAtIndex:(NSUInteger)idx withObject:(ApplicationVehicle*)value {
- NSIndexSet* indexes = [NSIndexSet indexSetWithIndex:idx];
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"vehicles"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self vehicles]];
- [tmpOrderedSet replaceObjectAtIndex:idx withObject:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"vehicles"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"vehicles"];
-}
-- (void)replaceVehiclesAtIndexes:(NSIndexSet *)indexes withVehicles:(NSArray *)value {
- [self willChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"vehicles"];
- NSMutableOrderedSet *tmpOrderedSet = [NSMutableOrderedSet orderedSetWithOrderedSet:[self vehicles]];
- [tmpOrderedSet replaceObjectsAtIndexes:indexes withObjects:value];
- [self setPrimitiveValue:tmpOrderedSet forKey:@"vehicles"];
- [self didChange:NSKeyValueChangeReplacement valuesAtIndexes:indexes forKey:@"vehicles"];
-}
@end
-
diff --git a/Source/Models/MachineModels/_ApplicationOccupant.h b/Source/Models/MachineModels/_ApplicationOccupant.h
index af5d614..d24ee5b 100644
--- a/Source/Models/MachineModels/_ApplicationOccupant.h
+++ b/Source/Models/MachineModels/_ApplicationOccupant.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct ApplicationOccupantAttributes {
__unsafe_unretained NSString *dateOfBirth;
__unsafe_unretained NSString *firstName;
@@ -15,8 +16,17 @@ extern const struct ApplicationOccupantRelationships {
__unsafe_unretained NSString *application;
} ApplicationOccupantRelationships;
+extern const struct ApplicationOccupantFetchedProperties {
+} ApplicationOccupantFetchedProperties;
+
@class ApplicationInfo;
+
+
+
+
+
+
@interface ApplicationOccupantID : NSManagedObjectID {}
@end
@@ -24,59 +34,109 @@ extern const struct ApplicationOccupantRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) ApplicationOccupantID* objectID;
+- (ApplicationOccupantID*)objectID;
+
+
+
@property (nonatomic, strong) NSDate* dateOfBirth;
+
//- (BOOL)validateDateOfBirth:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* firstName;
+
//- (BOOL)validateFirstName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* lastName;
+
//- (BOOL)validateLastName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* occupantId;
-@property (atomic) int64_t occupantIdValue;
+
+@property int64_t occupantIdValue;
- (int64_t)occupantIdValue;
- (void)setOccupantIdValue:(int64_t)value_;
//- (BOOL)validateOccupantId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* relationship;
+
//- (BOOL)validateRelationship:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) ApplicationInfo *application;
+
+
+
+
+@property (nonatomic, strong) ApplicationInfo* application;
//- (BOOL)validateApplication:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _ApplicationOccupant (CoreDataGeneratedAccessors)
+
@end
@interface _ApplicationOccupant (CoreDataGeneratedPrimitiveAccessors)
+
- (NSDate*)primitiveDateOfBirth;
- (void)setPrimitiveDateOfBirth:(NSDate*)value;
+
+
+
- (NSString*)primitiveFirstName;
- (void)setPrimitiveFirstName:(NSString*)value;
+
+
+
- (NSString*)primitiveLastName;
- (void)setPrimitiveLastName:(NSString*)value;
+
+
+
- (NSNumber*)primitiveOccupantId;
- (void)setPrimitiveOccupantId:(NSNumber*)value;
- (int64_t)primitiveOccupantIdValue;
- (void)setPrimitiveOccupantIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveRelationship;
- (void)setPrimitiveRelationship:(NSString*)value;
+
+
+
+
- (ApplicationInfo*)primitiveApplication;
- (void)setPrimitiveApplication:(ApplicationInfo*)value;
+
@end
diff --git a/Source/Models/MachineModels/_ApplicationOccupant.m b/Source/Models/MachineModels/_ApplicationOccupant.m
index a46a12d..471c7ff 100644
--- a/Source/Models/MachineModels/_ApplicationOccupant.m
+++ b/Source/Models/MachineModels/_ApplicationOccupant.m
@@ -15,6 +15,9 @@ const struct ApplicationOccupantRelationships ApplicationOccupantRelationships =
.application = @"application",
};
+const struct ApplicationOccupantFetchedProperties ApplicationOccupantFetchedProperties = {
+};
+
@implementation ApplicationOccupantID
@end
@@ -38,26 +41,45 @@ const struct ApplicationOccupantRelationships ApplicationOccupantRelationships =
return (ApplicationOccupantID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"occupantIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"occupantId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic dateOfBirth;
+
+
+
+
+
@dynamic firstName;
+
+
+
+
+
@dynamic lastName;
+
+
+
+
+
@dynamic occupantId;
+
+
- (int64_t)occupantIdValue {
NSNumber *result = [self occupantId];
return [result longLongValue];
@@ -76,9 +98,24 @@ const struct ApplicationOccupantRelationships ApplicationOccupantRelationships =
[self setPrimitiveOccupantId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic relationship;
+
+
+
+
+
@dynamic application;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_ApplicationRentalHistory.h b/Source/Models/MachineModels/_ApplicationRentalHistory.h
index d606407..8b80f52 100644
--- a/Source/Models/MachineModels/_ApplicationRentalHistory.h
+++ b/Source/Models/MachineModels/_ApplicationRentalHistory.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct ApplicationRentalHistoryAttributes {
__unsafe_unretained NSString *city;
__unsafe_unretained NSString *landlordFirstName;
@@ -22,8 +23,24 @@ extern const struct ApplicationRentalHistoryRelationships {
__unsafe_unretained NSString *application;
} ApplicationRentalHistoryRelationships;
+extern const struct ApplicationRentalHistoryFetchedProperties {
+} ApplicationRentalHistoryFetchedProperties;
+
@class ApplicationInfo;
+
+
+
+
+
+
+
+
+
+
+
+
+
@interface ApplicationRentalHistoryID : NSManagedObjectID {}
@end
@@ -31,108 +48,207 @@ extern const struct ApplicationRentalHistoryRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) ApplicationRentalHistoryID* objectID;
+- (ApplicationRentalHistoryID*)objectID;
+
+
+
@property (nonatomic, strong) NSString* city;
+
//- (BOOL)validateCity:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* landlordFirstName;
+
//- (BOOL)validateLandlordFirstName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* landlordLastName;
+
//- (BOOL)validateLandlordLastName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* landlordPhoneNumber;
+
//- (BOOL)validateLandlordPhoneNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDecimalNumber* monthlyPayment;
+
//- (BOOL)validateMonthlyPayment:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* moveInDate;
+
//- (BOOL)validateMoveInDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* moveOutDate;
+
//- (BOOL)validateMoveOutDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* postalCode;
+
//- (BOOL)validatePostalCode:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* rentalHistoryId;
-@property (atomic) int64_t rentalHistoryIdValue;
+
+@property int64_t rentalHistoryIdValue;
- (int64_t)rentalHistoryIdValue;
- (void)setRentalHistoryIdValue:(int64_t)value_;
//- (BOOL)validateRentalHistoryId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* rentalPropertyName;
+
//- (BOOL)validateRentalPropertyName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* state;
+
//- (BOOL)validateState:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* streetAddress;
+
//- (BOOL)validateStreetAddress:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) ApplicationInfo *application;
+
+
+
+
+@property (nonatomic, strong) ApplicationInfo* application;
//- (BOOL)validateApplication:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _ApplicationRentalHistory (CoreDataGeneratedAccessors)
+
@end
@interface _ApplicationRentalHistory (CoreDataGeneratedPrimitiveAccessors)
+
- (NSString*)primitiveCity;
- (void)setPrimitiveCity:(NSString*)value;
+
+
+
- (NSString*)primitiveLandlordFirstName;
- (void)setPrimitiveLandlordFirstName:(NSString*)value;
+
+
+
- (NSString*)primitiveLandlordLastName;
- (void)setPrimitiveLandlordLastName:(NSString*)value;
+
+
+
- (NSString*)primitiveLandlordPhoneNumber;
- (void)setPrimitiveLandlordPhoneNumber:(NSString*)value;
+
+
+
- (NSDecimalNumber*)primitiveMonthlyPayment;
- (void)setPrimitiveMonthlyPayment:(NSDecimalNumber*)value;
+
+
+
- (NSDate*)primitiveMoveInDate;
- (void)setPrimitiveMoveInDate:(NSDate*)value;
+
+
+
- (NSDate*)primitiveMoveOutDate;
- (void)setPrimitiveMoveOutDate:(NSDate*)value;
+
+
+
- (NSString*)primitivePostalCode;
- (void)setPrimitivePostalCode:(NSString*)value;
+
+
+
- (NSNumber*)primitiveRentalHistoryId;
- (void)setPrimitiveRentalHistoryId:(NSNumber*)value;
- (int64_t)primitiveRentalHistoryIdValue;
- (void)setPrimitiveRentalHistoryIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveRentalPropertyName;
- (void)setPrimitiveRentalPropertyName:(NSString*)value;
+
+
+
- (NSString*)primitiveState;
- (void)setPrimitiveState:(NSString*)value;
+
+
+
- (NSString*)primitiveStreetAddress;
- (void)setPrimitiveStreetAddress:(NSString*)value;
+
+
+
+
- (ApplicationInfo*)primitiveApplication;
- (void)setPrimitiveApplication:(ApplicationInfo*)value;
+
@end
diff --git a/Source/Models/MachineModels/_ApplicationRentalHistory.m b/Source/Models/MachineModels/_ApplicationRentalHistory.m
index 4f402ed..e09c343 100644
--- a/Source/Models/MachineModels/_ApplicationRentalHistory.m
+++ b/Source/Models/MachineModels/_ApplicationRentalHistory.m
@@ -22,6 +22,9 @@ const struct ApplicationRentalHistoryRelationships ApplicationRentalHistoryRelat
.application = @"application",
};
+const struct ApplicationRentalHistoryFetchedProperties ApplicationRentalHistoryFetchedProperties = {
+};
+
@implementation ApplicationRentalHistoryID
@end
@@ -45,36 +48,80 @@ const struct ApplicationRentalHistoryRelationships ApplicationRentalHistoryRelat
return (ApplicationRentalHistoryID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"rentalHistoryIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"rentalHistoryId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic city;
+
+
+
+
+
@dynamic landlordFirstName;
+
+
+
+
+
@dynamic landlordLastName;
+
+
+
+
+
@dynamic landlordPhoneNumber;
+
+
+
+
+
@dynamic monthlyPayment;
+
+
+
+
+
@dynamic moveInDate;
+
+
+
+
+
@dynamic moveOutDate;
+
+
+
+
+
@dynamic postalCode;
+
+
+
+
+
@dynamic rentalHistoryId;
+
+
- (int64_t)rentalHistoryIdValue {
NSNumber *result = [self rentalHistoryId];
return [result longLongValue];
@@ -93,13 +140,38 @@ const struct ApplicationRentalHistoryRelationships ApplicationRentalHistoryRelat
[self setPrimitiveRentalHistoryId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic rentalPropertyName;
+
+
+
+
+
@dynamic state;
+
+
+
+
+
@dynamic streetAddress;
+
+
+
+
+
@dynamic application;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_ApplicationVehicle.h b/Source/Models/MachineModels/_ApplicationVehicle.h
index c4ad6f9..f221677 100644
--- a/Source/Models/MachineModels/_ApplicationVehicle.h
+++ b/Source/Models/MachineModels/_ApplicationVehicle.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct ApplicationVehicleAttributes {
__unsafe_unretained NSString *color;
__unsafe_unretained NSString *licensePlate;
@@ -16,8 +17,18 @@ extern const struct ApplicationVehicleRelationships {
__unsafe_unretained NSString *application;
} ApplicationVehicleRelationships;
+extern const struct ApplicationVehicleFetchedProperties {
+} ApplicationVehicleFetchedProperties;
+
@class ApplicationInfo;
+
+
+
+
+
+
+
@interface ApplicationVehicleID : NSManagedObjectID {}
@end
@@ -25,70 +36,130 @@ extern const struct ApplicationVehicleRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) ApplicationVehicleID* objectID;
+- (ApplicationVehicleID*)objectID;
+
+
+
@property (nonatomic, strong) NSString* color;
+
//- (BOOL)validateColor:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* licensePlate;
+
//- (BOOL)validateLicensePlate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* make;
+
//- (BOOL)validateMake:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* type;
+
//- (BOOL)validateType:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* vehicleId;
-@property (atomic) int64_t vehicleIdValue;
+
+@property int64_t vehicleIdValue;
- (int64_t)vehicleIdValue;
- (void)setVehicleIdValue:(int64_t)value_;
//- (BOOL)validateVehicleId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* year;
-@property (atomic) int16_t yearValue;
+
+@property int16_t yearValue;
- (int16_t)yearValue;
- (void)setYearValue:(int16_t)value_;
//- (BOOL)validateYear:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) ApplicationInfo *application;
+
+
+
+
+@property (nonatomic, strong) ApplicationInfo* application;
//- (BOOL)validateApplication:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _ApplicationVehicle (CoreDataGeneratedAccessors)
+
@end
@interface _ApplicationVehicle (CoreDataGeneratedPrimitiveAccessors)
+
- (NSString*)primitiveColor;
- (void)setPrimitiveColor:(NSString*)value;
+
+
+
- (NSString*)primitiveLicensePlate;
- (void)setPrimitiveLicensePlate:(NSString*)value;
+
+
+
- (NSString*)primitiveMake;
- (void)setPrimitiveMake:(NSString*)value;
+
+
+
+- (NSString*)primitiveType;
+- (void)setPrimitiveType:(NSString*)value;
+
+
+
+
- (NSNumber*)primitiveVehicleId;
- (void)setPrimitiveVehicleId:(NSNumber*)value;
- (int64_t)primitiveVehicleIdValue;
- (void)setPrimitiveVehicleIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveYear;
- (void)setPrimitiveYear:(NSNumber*)value;
- (int16_t)primitiveYearValue;
- (void)setPrimitiveYearValue:(int16_t)value_;
+
+
+
+
- (ApplicationInfo*)primitiveApplication;
- (void)setPrimitiveApplication:(ApplicationInfo*)value;
+
@end
diff --git a/Source/Models/MachineModels/_ApplicationVehicle.m b/Source/Models/MachineModels/_ApplicationVehicle.m
index 93e3125..81e5315 100644
--- a/Source/Models/MachineModels/_ApplicationVehicle.m
+++ b/Source/Models/MachineModels/_ApplicationVehicle.m
@@ -16,6 +16,9 @@ const struct ApplicationVehicleRelationships ApplicationVehicleRelationships = {
.application = @"application",
};
+const struct ApplicationVehicleFetchedProperties ApplicationVehicleFetchedProperties = {
+};
+
@implementation ApplicationVehicleID
@end
@@ -39,33 +42,56 @@ const struct ApplicationVehicleRelationships ApplicationVehicleRelationships = {
return (ApplicationVehicleID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"vehicleIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"vehicleId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"yearValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"year"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic color;
+
+
+
+
+
@dynamic licensePlate;
+
+
+
+
+
@dynamic make;
+
+
+
+
+
@dynamic type;
+
+
+
+
+
@dynamic vehicleId;
+
+
- (int64_t)vehicleIdValue {
NSNumber *result = [self vehicleId];
return [result longLongValue];
@@ -84,8 +110,14 @@ const struct ApplicationVehicleRelationships ApplicationVehicleRelationships = {
[self setPrimitiveVehicleId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic year;
+
+
- (int16_t)yearValue {
NSNumber *result = [self year];
return [result shortValue];
@@ -104,7 +136,17 @@ const struct ApplicationVehicleRelationships ApplicationVehicleRelationships = {
[self setPrimitiveYear:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic application;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_BedBath.h b/Source/Models/MachineModels/_BedBath.h
index aceede2..82c9b39 100644
--- a/Source/Models/MachineModels/_BedBath.h
+++ b/Source/Models/MachineModels/_BedBath.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct BedBathAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *baths;
@@ -18,8 +19,20 @@ extern const struct BedBathRelationships {
__unsafe_unretained NSString *guestCard;
} BedBathRelationships;
+extern const struct BedBathFetchedProperties {
+} BedBathFetchedProperties;
+
@class GuestCard;
+
+
+
+
+
+
+
+
+
@interface BedBathID : NSManagedObjectID {}
@end
@@ -27,63 +40,104 @@ extern const struct BedBathRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) BedBathID* objectID;
+- (BedBathID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDecimalNumber* baths;
+
//- (BOOL)validateBaths:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* bedBathId;
-@property (atomic) int64_t bedBathIdValue;
+
+@property int64_t bedBathIdValue;
- (int64_t)bedBathIdValue;
- (void)setBedBathIdValue:(int64_t)value_;
//- (BOOL)validateBedBathId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* beds;
-@property (atomic) int16_t bedsValue;
+
+@property int16_t bedsValue;
- (int16_t)bedsValue;
- (void)setBedsValue:(int16_t)value_;
//- (BOOL)validateBeds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *guestCard;
+
+
+
+
+@property (nonatomic, strong) NSSet* guestCard;
- (NSMutableSet*)guestCardSet;
+
+
+
+
@end
-@interface _BedBath (GuestCardCoreDataGeneratedAccessors)
+@interface _BedBath (CoreDataGeneratedAccessors)
+
- (void)addGuestCard:(NSSet*)value_;
- (void)removeGuestCard:(NSSet*)value_;
- (void)addGuestCardObject:(GuestCard*)value_;
@@ -93,43 +147,70 @@ extern const struct BedBathRelationships {
@interface _BedBath (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSDecimalNumber*)primitiveBaths;
- (void)setPrimitiveBaths:(NSDecimalNumber*)value;
+
+
+
- (NSNumber*)primitiveBedBathId;
- (void)setPrimitiveBedBathId:(NSNumber*)value;
- (int64_t)primitiveBedBathIdValue;
- (void)setPrimitiveBedBathIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveBeds;
- (void)setPrimitiveBeds:(NSNumber*)value;
- (int16_t)primitiveBedsValue;
- (void)setPrimitiveBedsValue:(int16_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
+
- (NSMutableSet*)primitiveGuestCard;
- (void)setPrimitiveGuestCard:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_BedBath.m b/Source/Models/MachineModels/_BedBath.m
index 026feca..816aa19 100644
--- a/Source/Models/MachineModels/_BedBath.m
+++ b/Source/Models/MachineModels/_BedBath.m
@@ -18,6 +18,9 @@ const struct BedBathRelationships BedBathRelationships = {
.guestCard = @"guestCard",
};
+const struct BedBathFetchedProperties BedBathFetchedProperties = {
+};
+
@implementation BedBathID
@end
@@ -41,35 +44,36 @@ const struct BedBathRelationships BedBathRelationships = {
return (BedBathID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"bedBathIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"bedBathId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"bedsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"beds"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -88,10 +92,21 @@ const struct BedBathRelationships BedBathRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic baths;
+
+
+
+
+
@dynamic bedBathId;
+
+
- (int64_t)bedBathIdValue {
NSNumber *result = [self bedBathId];
return [result longLongValue];
@@ -110,8 +125,14 @@ const struct BedBathRelationships BedBathRelationships = {
[self setPrimitiveBedBathId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic beds;
+
+
- (int16_t)bedsValue {
NSNumber *result = [self beds];
return [result shortValue];
@@ -130,14 +151,35 @@ const struct BedBathRelationships BedBathRelationships = {
[self setPrimitiveBeds:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -156,16 +198,26 @@ const struct BedBathRelationships BedBathRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic guestCard;
+
- (NSMutableSet*)guestCardSet {
[self willAccessValueForKey:@"guestCard"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCard"];
-
+
[self didAccessValueForKey:@"guestCard"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_BlackOutDate.h b/Source/Models/MachineModels/_BlackOutDate.h
index 07ce0f0..5a15c16 100644
--- a/Source/Models/MachineModels/_BlackOutDate.h
+++ b/Source/Models/MachineModels/_BlackOutDate.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct BlackOutDateAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *blackOutDateId;
@@ -17,8 +18,19 @@ extern const struct BlackOutDateRelationships {
__unsafe_unretained NSString *community;
} BlackOutDateRelationships;
+extern const struct BlackOutDateFetchedProperties {
+} BlackOutDateFetchedProperties;
+
@class Community;
+
+
+
+
+
+
+
+
@interface BlackOutDateID : NSManagedObjectID {}
@end
@@ -26,94 +38,158 @@ extern const struct BlackOutDateRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) BlackOutDateID* objectID;
+- (BlackOutDateID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* blackOutDateId;
-@property (atomic) int64_t blackOutDateIdValue;
+
+@property int64_t blackOutDateIdValue;
- (int64_t)blackOutDateIdValue;
- (void)setBlackOutDateIdValue:(int64_t)value_;
//- (BOOL)validateBlackOutDateId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* date;
+
//- (BOOL)validateDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isBlackedOut;
-@property (atomic) BOOL isBlackedOutValue;
+
+@property BOOL isBlackedOutValue;
- (BOOL)isBlackedOutValue;
- (void)setIsBlackedOutValue:(BOOL)value_;
//- (BOOL)validateIsBlackedOut:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _BlackOutDate (CoreDataGeneratedAccessors)
+
@end
@interface _BlackOutDate (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveBlackOutDateId;
- (void)setPrimitiveBlackOutDateId:(NSNumber*)value;
- (int64_t)primitiveBlackOutDateIdValue;
- (void)setPrimitiveBlackOutDateIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSDate*)primitiveDate;
- (void)setPrimitiveDate:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveIsBlackedOut;
- (void)setPrimitiveIsBlackedOut:(NSNumber*)value;
- (BOOL)primitiveIsBlackedOutValue;
- (void)setPrimitiveIsBlackedOutValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
@end
diff --git a/Source/Models/MachineModels/_BlackOutDate.m b/Source/Models/MachineModels/_BlackOutDate.m
index 675a01e..b42ff73 100644
--- a/Source/Models/MachineModels/_BlackOutDate.m
+++ b/Source/Models/MachineModels/_BlackOutDate.m
@@ -17,6 +17,9 @@ const struct BlackOutDateRelationships BlackOutDateRelationships = {
.community = @"community",
};
+const struct BlackOutDateFetchedProperties BlackOutDateFetchedProperties = {
+};
+
@implementation BlackOutDateID
@end
@@ -40,35 +43,36 @@ const struct BlackOutDateRelationships BlackOutDateRelationships = {
return (BlackOutDateID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"blackOutDateIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"blackOutDateId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isBlackedOutValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isBlackedOut"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -87,8 +91,14 @@ const struct BlackOutDateRelationships BlackOutDateRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic blackOutDateId;
+
+
- (int64_t)blackOutDateIdValue {
NSNumber *result = [self blackOutDateId];
return [result longLongValue];
@@ -107,8 +117,14 @@ const struct BlackOutDateRelationships BlackOutDateRelationships = {
[self setPrimitiveBlackOutDateId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -127,12 +143,28 @@ const struct BlackOutDateRelationships BlackOutDateRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic date;
+
+
+
+
+
@dynamic isBlackedOut;
+
+
- (BOOL)isBlackedOutValue {
NSNumber *result = [self isBlackedOut];
return [result boolValue];
@@ -151,9 +183,24 @@ const struct BlackOutDateRelationships BlackOutDateRelationships = {
[self setPrimitiveIsBlackedOut:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic community;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_Community.h b/Source/Models/MachineModels/_Community.h
index 632fb3f..40176ae 100644
--- a/Source/Models/MachineModels/_Community.h
+++ b/Source/Models/MachineModels/_Community.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct CommunityAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *amenityIds;
@@ -96,6 +97,9 @@ extern const struct CommunityRelationships {
__unsafe_unretained NSString *units;
} CommunityRelationships;
+extern const struct CommunityFetchedProperties {
+} CommunityFetchedProperties;
+
@class Amenity;
@class CommunityGroup;
@class BlackOutDate;
@@ -111,10 +115,80 @@ extern const struct CommunityRelationships {
@class Quote;
@class Unit;
+
@class NSObject;
+
+
+
@class NSObject;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@interface CommunityID : NSManagedObjectID {}
@end
@@ -122,567 +196,868 @@ extern const struct CommunityRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) CommunityID* objectID;
+- (CommunityID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id amenityIds;
+
//- (BOOL)validateAmenityIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* applicationAuthorizationUrl;
+
//- (BOOL)validateApplicationAuthorizationUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* applicationQualificationUrl;
+
//- (BOOL)validateApplicationQualificationUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* applicationUrl;
+
//- (BOOL)validateApplicationUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* availabilityDefaultView;
-@property (atomic) int16_t availabilityDefaultViewValue;
+
+@property int16_t availabilityDefaultViewValue;
- (int16_t)availabilityDefaultViewValue;
- (void)setAvailabilityDefaultViewValue:(int16_t)value_;
//- (BOOL)validateAvailabilityDefaultView:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id availableCommunityGroupIds;
+
//- (BOOL)validateAvailableCommunityGroupIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* brokerDisclosureArea;
-@property (atomic) int16_t brokerDisclosureAreaValue;
+
+@property int16_t brokerDisclosureAreaValue;
- (int16_t)brokerDisclosureAreaValue;
- (void)setBrokerDisclosureAreaValue:(int16_t)value_;
//- (BOOL)validateBrokerDisclosureArea:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* brokerDisclosureTitle;
+
//- (BOOL)validateBrokerDisclosureTitle:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* brokerDisclosureUrl;
+
//- (BOOL)validateBrokerDisclosureUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* city;
+
//- (BOOL)validateCity:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* communityDescription;
+
//- (BOOL)validateCommunityDescription:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* communityMapUrl;
+
//- (BOOL)validateCommunityMapUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* communityUrl;
+
//- (BOOL)validateCommunityUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* country;
+
//- (BOOL)validateCountry:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* emailAccept;
-@property (atomic) BOOL emailAcceptValue;
+
+@property BOOL emailAcceptValue;
- (BOOL)emailAcceptValue;
- (void)setEmailAcceptValue:(BOOL)value_;
//- (BOOL)validateEmailAccept:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* emailDecline;
-@property (atomic) BOOL emailDeclineValue;
+
+@property BOOL emailDeclineValue;
- (BOOL)emailDeclineValue;
- (void)setEmailDeclineValue:(BOOL)value_;
//- (BOOL)validateEmailDecline:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* emailTemplate;
+
//- (BOOL)validateEmailTemplate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* facebookUrl;
+
//- (BOOL)validateFacebookUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* fax;
+
//- (BOOL)validateFax:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* featureIds;
-@property (atomic) int64_t featureIdsValue;
+
+@property int64_t featureIdsValue;
- (int64_t)featureIdsValue;
- (void)setFeatureIdsValue:(int64_t)value_;
//- (BOOL)validateFeatureIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* floorPlanUrl;
+
//- (BOOL)validateFloorPlanUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* integrationLastSync;
+
//- (BOOL)validateIntegrationLastSync:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* integrationPassword;
+
//- (BOOL)validateIntegrationPassword:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* integrationType;
+
//- (BOOL)validateIntegrationType:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* integrationUrl;
+
//- (BOOL)validateIntegrationUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* integrationUsername;
+
//- (BOOL)validateIntegrationUsername:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isAppliable;
-@property (atomic) BOOL isAppliableValue;
+
+@property BOOL isAppliableValue;
- (BOOL)isAppliableValue;
- (void)setIsAppliableValue:(BOOL)value_;
//- (BOOL)validateIsAppliable:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isFollowUpRequired;
-@property (atomic) BOOL isFollowUpRequiredValue;
+
+@property BOOL isFollowUpRequiredValue;
- (BOOL)isFollowUpRequiredValue;
- (void)setIsFollowUpRequiredValue:(BOOL)value_;
//- (BOOL)validateIsFollowUpRequired:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isMediaEnabled;
-@property (atomic) BOOL isMediaEnabledValue;
+
+@property BOOL isMediaEnabledValue;
- (BOOL)isMediaEnabledValue;
- (void)setIsMediaEnabledValue:(BOOL)value_;
//- (BOOL)validateIsMediaEnabled:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isPriceQuoteEnabled;
-@property (atomic) BOOL isPriceQuoteEnabledValue;
+
+@property BOOL isPriceQuoteEnabledValue;
- (BOOL)isPriceQuoteEnabledValue;
- (void)setIsPriceQuoteEnabledValue:(BOOL)value_;
//- (BOOL)validateIsPriceQuoteEnabled:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isRemoteSearchEnabled;
-@property (atomic) BOOL isRemoteSearchEnabledValue;
+
+@property BOOL isRemoteSearchEnabledValue;
- (BOOL)isRemoteSearchEnabledValue;
- (void)setIsRemoteSearchEnabledValue:(BOOL)value_;
//- (BOOL)validateIsRemoteSearchEnabled:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isRemoteVariableRentEnabled;
-@property (atomic) BOOL isRemoteVariableRentEnabledValue;
+
+@property BOOL isRemoteVariableRentEnabledValue;
- (BOOL)isRemoteVariableRentEnabledValue;
- (void)setIsRemoteVariableRentEnabledValue:(BOOL)value_;
//- (BOOL)validateIsRemoteVariableRentEnabled:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isReserveEnabled;
-@property (atomic) BOOL isReserveEnabledValue;
+
+@property BOOL isReserveEnabledValue;
- (BOOL)isReserveEnabledValue;
- (void)setIsReserveEnabledValue:(BOOL)value_;
//- (BOOL)validateIsReserveEnabled:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isTaxCreditEnabled;
-@property (atomic) BOOL isTaxCreditEnabledValue;
+
+@property BOOL isTaxCreditEnabledValue;
- (BOOL)isTaxCreditEnabledValue;
- (void)setIsTaxCreditEnabledValue:(BOOL)value_;
//- (BOOL)validateIsTaxCreditEnabled:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isVariableRentEnabled;
-@property (atomic) BOOL isVariableRentEnabledValue;
+
+@property BOOL isVariableRentEnabledValue;
- (BOOL)isVariableRentEnabledValue;
- (void)setIsVariableRentEnabledValue:(BOOL)value_;
//- (BOOL)validateIsVariableRentEnabled:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* maxUnitPrice;
-@property (atomic) int16_t maxUnitPriceValue;
+
+@property int16_t maxUnitPriceValue;
- (int16_t)maxUnitPriceValue;
- (void)setMaxUnitPriceValue:(int16_t)value_;
//- (BOOL)validateMaxUnitPrice:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* maximumFloor;
-@property (atomic) int16_t maximumFloorValue;
+
+@property int16_t maximumFloorValue;
- (int16_t)maximumFloorValue;
- (void)setMaximumFloorValue:(int16_t)value_;
//- (BOOL)validateMaximumFloor:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* maximumOccupancy;
-@property (atomic) int16_t maximumOccupancyValue;
+
+@property int16_t maximumOccupancyValue;
- (int16_t)maximumOccupancyValue;
- (void)setMaximumOccupancyValue:(int16_t)value_;
//- (BOOL)validateMaximumOccupancy:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* minUnitPrice;
-@property (atomic) int16_t minUnitPriceValue;
+
+@property int16_t minUnitPriceValue;
- (int16_t)minUnitPriceValue;
- (void)setMinUnitPriceValue:(int16_t)value_;
//- (BOOL)validateMinUnitPrice:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* minimumFloor;
-@property (atomic) int16_t minimumFloorValue;
+
+@property int16_t minimumFloorValue;
- (int16_t)minimumFloorValue;
- (void)setMinimumFloorValue:(int16_t)value_;
//- (BOOL)validateMinimumFloor:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name1;
+
//- (BOOL)validateName1:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* neighborhoodMapUrl;
+
//- (BOOL)validateNeighborhoodMapUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* neighborhoodUrl;
+
//- (BOOL)validateNeighborhoodUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* password;
+
//- (BOOL)validatePassword:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* petPolicy;
+
//- (BOOL)validatePetPolicy:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* phone;
+
//- (BOOL)validatePhone:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* photoGalleryUrl;
+
//- (BOOL)validatePhotoGalleryUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* propertyId;
-@property (atomic) int64_t propertyIdValue;
+
+@property int64_t propertyIdValue;
- (int64_t)propertyIdValue;
- (void)setPropertyIdValue:(int64_t)value_;
//- (BOOL)validatePropertyId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* propertyManagerId;
-@property (atomic) int64_t propertyManagerIdValue;
+
+@property int64_t propertyManagerIdValue;
- (int64_t)propertyManagerIdValue;
- (void)setPropertyManagerIdValue:(int64_t)value_;
//- (BOOL)validatePropertyManagerId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* qualityUrl;
+
//- (BOOL)validateQualityUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* renterReviewedUrl;
+
//- (BOOL)validateRenterReviewedUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* residentServicesUrl;
+
//- (BOOL)validateResidentServicesUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* smsOptType;
-@property (atomic) int16_t smsOptTypeValue;
+
+@property int16_t smsOptTypeValue;
- (int16_t)smsOptTypeValue;
- (void)setSmsOptTypeValue:(int16_t)value_;
//- (BOOL)validateSmsOptType:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* smsTemplate;
+
//- (BOOL)validateSmsTemplate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* state;
+
//- (BOOL)validateState:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* street1;
+
//- (BOOL)validateStreet1:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* street2;
+
//- (BOOL)validateStreet2:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* street3;
+
//- (BOOL)validateStreet3:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* token;
+
//- (BOOL)validateToken:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* twitterUrl;
+
//- (BOOL)validateTwitterUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* username;
+
//- (BOOL)validateUsername:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* version;
-@property (atomic) int16_t versionValue;
+
+@property int16_t versionValue;
- (int16_t)versionValue;
- (void)setVersionValue:(int16_t)value_;
//- (BOOL)validateVersion:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* walkScoreUrl;
+
//- (BOOL)validateWalkScoreUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* yelpUrl;
+
//- (BOOL)validateYelpUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* youTubeUrl;
+
//- (BOOL)validateYouTubeUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* zip;
+
//- (BOOL)validateZip:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *amenities;
+
+
+
+
+@property (nonatomic, strong) NSSet* amenities;
- (NSMutableSet*)amenitiesSet;
-@property (nonatomic, strong) NSSet *availableCommunityGroups;
+
+
+
+@property (nonatomic, strong) NSSet* availableCommunityGroups;
- (NSMutableSet*)availableCommunityGroupsSet;
-@property (nonatomic, strong) NSSet *blackOutDatesForCommunity;
+
+
+
+@property (nonatomic, strong) NSSet* blackOutDatesForCommunity;
- (NSMutableSet*)blackOutDatesForCommunitySet;
-@property (nonatomic, strong) NSSet *communityGalleries;
+
+
+
+@property (nonatomic, strong) NSSet* communityGalleries;
- (NSMutableSet*)communityGalleriesSet;
-@property (nonatomic, strong) NSSet *communityUrls;
+
+
+
+@property (nonatomic, strong) NSSet* communityUrls;
- (NSMutableSet*)communityUrlsSet;
-@property (nonatomic, strong) NSSet *didNotLeaseReasons;
+
+
+
+@property (nonatomic, strong) NSSet* didNotLeaseReasons;
- (NSMutableSet*)didNotLeaseReasonsSet;
-@property (nonatomic, strong) NSSet *emailTemplates;
+
+
+
+@property (nonatomic, strong) NSSet* emailTemplates;
- (NSMutableSet*)emailTemplatesSet;
-@property (nonatomic, strong) NSSet *floorPlans;
+
+
+
+@property (nonatomic, strong) NSSet* floorPlans;
- (NSMutableSet*)floorPlansSet;
-@property (nonatomic, strong) NSSet *guestCards;
+
+
+
+@property (nonatomic, strong) NSSet* guestCards;
- (NSMutableSet*)guestCardsSet;
-@property (nonatomic, strong) NSSet *interactionResults;
+
+
+
+@property (nonatomic, strong) NSSet* interactionResults;
- (NSMutableSet*)interactionResultsSet;
-@property (nonatomic, strong) NSSet *leaseTerms;
+
+
+
+@property (nonatomic, strong) NSSet* leaseTerms;
- (NSMutableSet*)leaseTermsSet;
-@property (nonatomic, strong) NSSet *marketingSources;
+
+
+
+@property (nonatomic, strong) NSSet* marketingSources;
- (NSMutableSet*)marketingSourcesSet;
-@property (nonatomic, strong) NSSet *quotes;
+
+
+
+@property (nonatomic, strong) NSSet* quotes;
- (NSMutableSet*)quotesSet;
-@property (nonatomic, strong) NSSet *units;
+
+
+
+@property (nonatomic, strong) NSSet* units;
- (NSMutableSet*)unitsSet;
+
+
+
+
@end
-@interface _Community (AmenitiesCoreDataGeneratedAccessors)
+@interface _Community (CoreDataGeneratedAccessors)
+
- (void)addAmenities:(NSSet*)value_;
- (void)removeAmenities:(NSSet*)value_;
- (void)addAmenitiesObject:(Amenity*)value_;
- (void)removeAmenitiesObject:(Amenity*)value_;
-@end
-
-@interface _Community (AvailableCommunityGroupsCoreDataGeneratedAccessors)
- (void)addAvailableCommunityGroups:(NSSet*)value_;
- (void)removeAvailableCommunityGroups:(NSSet*)value_;
- (void)addAvailableCommunityGroupsObject:(CommunityGroup*)value_;
- (void)removeAvailableCommunityGroupsObject:(CommunityGroup*)value_;
-@end
-
-@interface _Community (BlackOutDatesForCommunityCoreDataGeneratedAccessors)
- (void)addBlackOutDatesForCommunity:(NSSet*)value_;
- (void)removeBlackOutDatesForCommunity:(NSSet*)value_;
- (void)addBlackOutDatesForCommunityObject:(BlackOutDate*)value_;
- (void)removeBlackOutDatesForCommunityObject:(BlackOutDate*)value_;
-@end
-
-@interface _Community (CommunityGalleriesCoreDataGeneratedAccessors)
- (void)addCommunityGalleries:(NSSet*)value_;
- (void)removeCommunityGalleries:(NSSet*)value_;
- (void)addCommunityGalleriesObject:(CommunityGallery*)value_;
- (void)removeCommunityGalleriesObject:(CommunityGallery*)value_;
-@end
-
-@interface _Community (CommunityUrlsCoreDataGeneratedAccessors)
- (void)addCommunityUrls:(NSSet*)value_;
- (void)removeCommunityUrls:(NSSet*)value_;
- (void)addCommunityUrlsObject:(CommunityUrl*)value_;
- (void)removeCommunityUrlsObject:(CommunityUrl*)value_;
-@end
-
-@interface _Community (DidNotLeaseReasonsCoreDataGeneratedAccessors)
- (void)addDidNotLeaseReasons:(NSSet*)value_;
- (void)removeDidNotLeaseReasons:(NSSet*)value_;
- (void)addDidNotLeaseReasonsObject:(DidNotLeaseReason*)value_;
- (void)removeDidNotLeaseReasonsObject:(DidNotLeaseReason*)value_;
-@end
-
-@interface _Community (EmailTemplatesCoreDataGeneratedAccessors)
- (void)addEmailTemplates:(NSSet*)value_;
- (void)removeEmailTemplates:(NSSet*)value_;
- (void)addEmailTemplatesObject:(EmailTemplate*)value_;
- (void)removeEmailTemplatesObject:(EmailTemplate*)value_;
-@end
-
-@interface _Community (FloorPlansCoreDataGeneratedAccessors)
- (void)addFloorPlans:(NSSet*)value_;
- (void)removeFloorPlans:(NSSet*)value_;
- (void)addFloorPlansObject:(FloorPlan*)value_;
- (void)removeFloorPlansObject:(FloorPlan*)value_;
-@end
-
-@interface _Community (GuestCardsCoreDataGeneratedAccessors)
- (void)addGuestCards:(NSSet*)value_;
- (void)removeGuestCards:(NSSet*)value_;
- (void)addGuestCardsObject:(GuestCard*)value_;
- (void)removeGuestCardsObject:(GuestCard*)value_;
-@end
-
-@interface _Community (InteractionResultsCoreDataGeneratedAccessors)
- (void)addInteractionResults:(NSSet*)value_;
- (void)removeInteractionResults:(NSSet*)value_;
- (void)addInteractionResultsObject:(InteractionResult*)value_;
- (void)removeInteractionResultsObject:(InteractionResult*)value_;
-@end
-
-@interface _Community (LeaseTermsCoreDataGeneratedAccessors)
- (void)addLeaseTerms:(NSSet*)value_;
- (void)removeLeaseTerms:(NSSet*)value_;
- (void)addLeaseTermsObject:(LeaseTerm*)value_;
- (void)removeLeaseTermsObject:(LeaseTerm*)value_;
-@end
-
-@interface _Community (MarketingSourcesCoreDataGeneratedAccessors)
- (void)addMarketingSources:(NSSet*)value_;
- (void)removeMarketingSources:(NSSet*)value_;
- (void)addMarketingSourcesObject:(MarketingSource*)value_;
- (void)removeMarketingSourcesObject:(MarketingSource*)value_;
-@end
-
-@interface _Community (QuotesCoreDataGeneratedAccessors)
- (void)addQuotes:(NSSet*)value_;
- (void)removeQuotes:(NSSet*)value_;
- (void)addQuotesObject:(Quote*)value_;
- (void)removeQuotesObject:(Quote*)value_;
-@end
-
-@interface _Community (UnitsCoreDataGeneratedAccessors)
- (void)addUnits:(NSSet*)value_;
- (void)removeUnits:(NSSet*)value_;
- (void)addUnitsObject:(Unit*)value_;
@@ -692,343 +1067,591 @@ extern const struct CommunityRelationships {
@interface _Community (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (id)primitiveAmenityIds;
- (void)setPrimitiveAmenityIds:(id)value;
+
+
+
- (NSString*)primitiveApplicationAuthorizationUrl;
- (void)setPrimitiveApplicationAuthorizationUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveApplicationQualificationUrl;
- (void)setPrimitiveApplicationQualificationUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveApplicationUrl;
- (void)setPrimitiveApplicationUrl:(NSString*)value;
+
+
+
- (NSNumber*)primitiveAvailabilityDefaultView;
- (void)setPrimitiveAvailabilityDefaultView:(NSNumber*)value;
- (int16_t)primitiveAvailabilityDefaultViewValue;
- (void)setPrimitiveAvailabilityDefaultViewValue:(int16_t)value_;
+
+
+
- (id)primitiveAvailableCommunityGroupIds;
- (void)setPrimitiveAvailableCommunityGroupIds:(id)value;
+
+
+
- (NSNumber*)primitiveBrokerDisclosureArea;
- (void)setPrimitiveBrokerDisclosureArea:(NSNumber*)value;
- (int16_t)primitiveBrokerDisclosureAreaValue;
- (void)setPrimitiveBrokerDisclosureAreaValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveBrokerDisclosureTitle;
- (void)setPrimitiveBrokerDisclosureTitle:(NSString*)value;
+
+
+
- (NSString*)primitiveBrokerDisclosureUrl;
- (void)setPrimitiveBrokerDisclosureUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveCity;
- (void)setPrimitiveCity:(NSString*)value;
+
+
+
- (NSString*)primitiveCommunityDescription;
- (void)setPrimitiveCommunityDescription:(NSString*)value;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveCommunityMapUrl;
- (void)setPrimitiveCommunityMapUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveCommunityUrl;
- (void)setPrimitiveCommunityUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveCountry;
- (void)setPrimitiveCountry:(NSString*)value;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveEmailAccept;
- (void)setPrimitiveEmailAccept:(NSNumber*)value;
- (BOOL)primitiveEmailAcceptValue;
- (void)setPrimitiveEmailAcceptValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveEmailDecline;
- (void)setPrimitiveEmailDecline:(NSNumber*)value;
- (BOOL)primitiveEmailDeclineValue;
- (void)setPrimitiveEmailDeclineValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveEmailTemplate;
- (void)setPrimitiveEmailTemplate:(NSString*)value;
+
+
+
- (NSString*)primitiveFacebookUrl;
- (void)setPrimitiveFacebookUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveFax;
- (void)setPrimitiveFax:(NSString*)value;
+
+
+
- (NSNumber*)primitiveFeatureIds;
- (void)setPrimitiveFeatureIds:(NSNumber*)value;
- (int64_t)primitiveFeatureIdsValue;
- (void)setPrimitiveFeatureIdsValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveFloorPlanUrl;
- (void)setPrimitiveFloorPlanUrl:(NSString*)value;
+
+
+
- (NSDate*)primitiveIntegrationLastSync;
- (void)setPrimitiveIntegrationLastSync:(NSDate*)value;
+
+
+
- (NSString*)primitiveIntegrationPassword;
- (void)setPrimitiveIntegrationPassword:(NSString*)value;
+
+
+
- (NSString*)primitiveIntegrationType;
- (void)setPrimitiveIntegrationType:(NSString*)value;
+
+
+
- (NSString*)primitiveIntegrationUrl;
- (void)setPrimitiveIntegrationUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveIntegrationUsername;
- (void)setPrimitiveIntegrationUsername:(NSString*)value;
+
+
+
- (NSNumber*)primitiveIsAppliable;
- (void)setPrimitiveIsAppliable:(NSNumber*)value;
- (BOOL)primitiveIsAppliableValue;
- (void)setPrimitiveIsAppliableValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsFollowUpRequired;
- (void)setPrimitiveIsFollowUpRequired:(NSNumber*)value;
- (BOOL)primitiveIsFollowUpRequiredValue;
- (void)setPrimitiveIsFollowUpRequiredValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsMediaEnabled;
- (void)setPrimitiveIsMediaEnabled:(NSNumber*)value;
- (BOOL)primitiveIsMediaEnabledValue;
- (void)setPrimitiveIsMediaEnabledValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsPriceQuoteEnabled;
- (void)setPrimitiveIsPriceQuoteEnabled:(NSNumber*)value;
- (BOOL)primitiveIsPriceQuoteEnabledValue;
- (void)setPrimitiveIsPriceQuoteEnabledValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsRemoteSearchEnabled;
- (void)setPrimitiveIsRemoteSearchEnabled:(NSNumber*)value;
- (BOOL)primitiveIsRemoteSearchEnabledValue;
- (void)setPrimitiveIsRemoteSearchEnabledValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsRemoteVariableRentEnabled;
- (void)setPrimitiveIsRemoteVariableRentEnabled:(NSNumber*)value;
- (BOOL)primitiveIsRemoteVariableRentEnabledValue;
- (void)setPrimitiveIsRemoteVariableRentEnabledValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsReserveEnabled;
- (void)setPrimitiveIsReserveEnabled:(NSNumber*)value;
- (BOOL)primitiveIsReserveEnabledValue;
- (void)setPrimitiveIsReserveEnabledValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsTaxCreditEnabled;
- (void)setPrimitiveIsTaxCreditEnabled:(NSNumber*)value;
- (BOOL)primitiveIsTaxCreditEnabledValue;
- (void)setPrimitiveIsTaxCreditEnabledValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsVariableRentEnabled;
- (void)setPrimitiveIsVariableRentEnabled:(NSNumber*)value;
- (BOOL)primitiveIsVariableRentEnabledValue;
- (void)setPrimitiveIsVariableRentEnabledValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveMaxUnitPrice;
- (void)setPrimitiveMaxUnitPrice:(NSNumber*)value;
- (int16_t)primitiveMaxUnitPriceValue;
- (void)setPrimitiveMaxUnitPriceValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveMaximumFloor;
- (void)setPrimitiveMaximumFloor:(NSNumber*)value;
- (int16_t)primitiveMaximumFloorValue;
- (void)setPrimitiveMaximumFloorValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveMaximumOccupancy;
- (void)setPrimitiveMaximumOccupancy:(NSNumber*)value;
- (int16_t)primitiveMaximumOccupancyValue;
- (void)setPrimitiveMaximumOccupancyValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveMinUnitPrice;
- (void)setPrimitiveMinUnitPrice:(NSNumber*)value;
- (int16_t)primitiveMinUnitPriceValue;
- (void)setPrimitiveMinUnitPriceValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveMinimumFloor;
- (void)setPrimitiveMinimumFloor:(NSNumber*)value;
- (int16_t)primitiveMinimumFloorValue;
- (void)setPrimitiveMinimumFloorValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSString*)primitiveName1;
- (void)setPrimitiveName1:(NSString*)value;
+
+
+
- (NSString*)primitiveNeighborhoodMapUrl;
- (void)setPrimitiveNeighborhoodMapUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveNeighborhoodUrl;
- (void)setPrimitiveNeighborhoodUrl:(NSString*)value;
+
+
+
- (NSString*)primitivePassword;
- (void)setPrimitivePassword:(NSString*)value;
+
+
+
- (NSString*)primitivePetPolicy;
- (void)setPrimitivePetPolicy:(NSString*)value;
+
+
+
- (NSString*)primitivePhone;
- (void)setPrimitivePhone:(NSString*)value;
+
+
+
- (NSString*)primitivePhotoGalleryUrl;
- (void)setPrimitivePhotoGalleryUrl:(NSString*)value;
+
+
+
- (NSNumber*)primitivePropertyId;
- (void)setPrimitivePropertyId:(NSNumber*)value;
- (int64_t)primitivePropertyIdValue;
- (void)setPrimitivePropertyIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitivePropertyManagerId;
- (void)setPrimitivePropertyManagerId:(NSNumber*)value;
- (int64_t)primitivePropertyManagerIdValue;
- (void)setPrimitivePropertyManagerIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveQualityUrl;
- (void)setPrimitiveQualityUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveRenterReviewedUrl;
- (void)setPrimitiveRenterReviewedUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveResidentServicesUrl;
- (void)setPrimitiveResidentServicesUrl:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSmsOptType;
- (void)setPrimitiveSmsOptType:(NSNumber*)value;
- (int16_t)primitiveSmsOptTypeValue;
- (void)setPrimitiveSmsOptTypeValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveSmsTemplate;
- (void)setPrimitiveSmsTemplate:(NSString*)value;
+
+
+
- (NSString*)primitiveState;
- (void)setPrimitiveState:(NSString*)value;
+
+
+
- (NSString*)primitiveStreet1;
- (void)setPrimitiveStreet1:(NSString*)value;
+
+
+
- (NSString*)primitiveStreet2;
- (void)setPrimitiveStreet2:(NSString*)value;
+
+
+
- (NSString*)primitiveStreet3;
- (void)setPrimitiveStreet3:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveToken;
- (void)setPrimitiveToken:(NSString*)value;
+
+
+
- (NSString*)primitiveTwitterUrl;
- (void)setPrimitiveTwitterUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveUsername;
- (void)setPrimitiveUsername:(NSString*)value;
+
+
+
- (NSNumber*)primitiveVersion;
- (void)setPrimitiveVersion:(NSNumber*)value;
- (int16_t)primitiveVersionValue;
- (void)setPrimitiveVersionValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveWalkScoreUrl;
- (void)setPrimitiveWalkScoreUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveYelpUrl;
- (void)setPrimitiveYelpUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveYouTubeUrl;
- (void)setPrimitiveYouTubeUrl:(NSString*)value;
+
+
+
- (NSString*)primitiveZip;
- (void)setPrimitiveZip:(NSString*)value;
+
+
+
+
- (NSMutableSet*)primitiveAmenities;
- (void)setPrimitiveAmenities:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveAvailableCommunityGroups;
- (void)setPrimitiveAvailableCommunityGroups:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveBlackOutDatesForCommunity;
- (void)setPrimitiveBlackOutDatesForCommunity:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveCommunityGalleries;
- (void)setPrimitiveCommunityGalleries:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveCommunityUrls;
- (void)setPrimitiveCommunityUrls:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveDidNotLeaseReasons;
- (void)setPrimitiveDidNotLeaseReasons:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveEmailTemplates;
- (void)setPrimitiveEmailTemplates:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveFloorPlans;
- (void)setPrimitiveFloorPlans:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveGuestCards;
- (void)setPrimitiveGuestCards:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveInteractionResults;
- (void)setPrimitiveInteractionResults:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveLeaseTerms;
- (void)setPrimitiveLeaseTerms:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveMarketingSources;
- (void)setPrimitiveMarketingSources:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveQuotes;
- (void)setPrimitiveQuotes:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveUnits;
- (void)setPrimitiveUnits:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_Community.m b/Source/Models/MachineModels/_Community.m
index 1b2102c..2503d20 100644
--- a/Source/Models/MachineModels/_Community.m
+++ b/Source/Models/MachineModels/_Community.m
@@ -96,6 +96,9 @@ const struct CommunityRelationships CommunityRelationships = {
.units = @"units",
};
+const struct CommunityFetchedProperties CommunityFetchedProperties = {
+};
+
@implementation CommunityID
@end
@@ -119,145 +122,124 @@ const struct CommunityRelationships CommunityRelationships = {
return (CommunityID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"availabilityDefaultViewValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"availabilityDefaultView"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"brokerDisclosureAreaValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"brokerDisclosureArea"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"emailAcceptValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"emailAccept"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"emailDeclineValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"emailDecline"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"featureIdsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"featureIds"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isAppliableValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isAppliable"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isFollowUpRequiredValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isFollowUpRequired"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isMediaEnabledValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isMediaEnabled"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isPriceQuoteEnabledValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isPriceQuoteEnabled"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isRemoteSearchEnabledValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isRemoteSearchEnabled"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isRemoteVariableRentEnabledValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isRemoteVariableRentEnabled"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isReserveEnabledValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isReserveEnabled"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isTaxCreditEnabledValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isTaxCreditEnabled"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isVariableRentEnabledValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isVariableRentEnabled"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"maxUnitPriceValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"maxUnitPrice"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"maximumFloorValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"maximumFloor"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"maximumOccupancyValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"maximumOccupancy"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"minUnitPriceValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"minUnitPrice"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"minimumFloorValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"minimumFloor"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"propertyIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"propertyId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"propertyManagerIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"propertyManagerId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"smsOptTypeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"smsOptType"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"versionValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"version"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -276,16 +258,42 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic amenityIds;
+
+
+
+
+
@dynamic applicationAuthorizationUrl;
+
+
+
+
+
@dynamic applicationQualificationUrl;
+
+
+
+
+
@dynamic applicationUrl;
+
+
+
+
+
@dynamic availabilityDefaultView;
+
+
- (int16_t)availabilityDefaultViewValue {
NSNumber *result = [self availabilityDefaultView];
return [result shortValue];
@@ -304,10 +312,21 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveAvailabilityDefaultView:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic availableCommunityGroupIds;
+
+
+
+
+
@dynamic brokerDisclosureArea;
+
+
- (int16_t)brokerDisclosureAreaValue {
NSNumber *result = [self brokerDisclosureArea];
return [result shortValue];
@@ -326,16 +345,42 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveBrokerDisclosureArea:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic brokerDisclosureTitle;
+
+
+
+
+
@dynamic brokerDisclosureUrl;
+
+
+
+
+
@dynamic city;
+
+
+
+
+
@dynamic communityDescription;
+
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -354,16 +399,42 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic communityMapUrl;
+
+
+
+
+
@dynamic communityUrl;
+
+
+
+
+
@dynamic country;
+
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic emailAccept;
+
+
- (BOOL)emailAcceptValue {
NSNumber *result = [self emailAccept];
return [result boolValue];
@@ -382,8 +453,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveEmailAccept:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic emailDecline;
+
+
- (BOOL)emailDeclineValue {
NSNumber *result = [self emailDecline];
return [result boolValue];
@@ -402,14 +479,35 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveEmailDecline:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic emailTemplate;
+
+
+
+
+
@dynamic facebookUrl;
+
+
+
+
+
@dynamic fax;
+
+
+
+
+
@dynamic featureIds;
+
+
- (int64_t)featureIdsValue {
NSNumber *result = [self featureIds];
return [result longLongValue];
@@ -428,20 +526,56 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveFeatureIds:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic floorPlanUrl;
+
+
+
+
+
@dynamic integrationLastSync;
+
+
+
+
+
@dynamic integrationPassword;
+
+
+
+
+
@dynamic integrationType;
+
+
+
+
+
@dynamic integrationUrl;
+
+
+
+
+
@dynamic integrationUsername;
+
+
+
+
+
@dynamic isAppliable;
+
+
- (BOOL)isAppliableValue {
NSNumber *result = [self isAppliable];
return [result boolValue];
@@ -460,8 +594,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveIsAppliable:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isFollowUpRequired;
+
+
- (BOOL)isFollowUpRequiredValue {
NSNumber *result = [self isFollowUpRequired];
return [result boolValue];
@@ -480,8 +620,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveIsFollowUpRequired:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isMediaEnabled;
+
+
- (BOOL)isMediaEnabledValue {
NSNumber *result = [self isMediaEnabled];
return [result boolValue];
@@ -500,8 +646,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveIsMediaEnabled:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isPriceQuoteEnabled;
+
+
- (BOOL)isPriceQuoteEnabledValue {
NSNumber *result = [self isPriceQuoteEnabled];
return [result boolValue];
@@ -520,8 +672,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveIsPriceQuoteEnabled:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isRemoteSearchEnabled;
+
+
- (BOOL)isRemoteSearchEnabledValue {
NSNumber *result = [self isRemoteSearchEnabled];
return [result boolValue];
@@ -540,8 +698,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveIsRemoteSearchEnabled:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isRemoteVariableRentEnabled;
+
+
- (BOOL)isRemoteVariableRentEnabledValue {
NSNumber *result = [self isRemoteVariableRentEnabled];
return [result boolValue];
@@ -560,8 +724,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveIsRemoteVariableRentEnabled:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isReserveEnabled;
+
+
- (BOOL)isReserveEnabledValue {
NSNumber *result = [self isReserveEnabled];
return [result boolValue];
@@ -580,8 +750,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveIsReserveEnabled:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isTaxCreditEnabled;
+
+
- (BOOL)isTaxCreditEnabledValue {
NSNumber *result = [self isTaxCreditEnabled];
return [result boolValue];
@@ -600,8 +776,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveIsTaxCreditEnabled:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isVariableRentEnabled;
+
+
- (BOOL)isVariableRentEnabledValue {
NSNumber *result = [self isVariableRentEnabled];
return [result boolValue];
@@ -620,12 +802,28 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveIsVariableRentEnabled:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic maxUnitPrice;
+
+
- (int16_t)maxUnitPriceValue {
NSNumber *result = [self maxUnitPrice];
return [result shortValue];
@@ -644,8 +842,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveMaxUnitPrice:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic maximumFloor;
+
+
- (int16_t)maximumFloorValue {
NSNumber *result = [self maximumFloor];
return [result shortValue];
@@ -664,8 +868,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveMaximumFloor:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic maximumOccupancy;
+
+
- (int16_t)maximumOccupancyValue {
NSNumber *result = [self maximumOccupancy];
return [result shortValue];
@@ -684,8 +894,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveMaximumOccupancy:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic minUnitPrice;
+
+
- (int16_t)minUnitPriceValue {
NSNumber *result = [self minUnitPrice];
return [result shortValue];
@@ -704,8 +920,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveMinUnitPrice:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic minimumFloor;
+
+
- (int16_t)minimumFloorValue {
NSNumber *result = [self minimumFloor];
return [result shortValue];
@@ -724,24 +946,70 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveMinimumFloor:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic name1;
+
+
+
+
+
@dynamic neighborhoodMapUrl;
+
+
+
+
+
@dynamic neighborhoodUrl;
+
+
+
+
+
@dynamic password;
+
+
+
+
+
@dynamic petPolicy;
+
+
+
+
+
@dynamic phone;
+
+
+
+
+
@dynamic photoGalleryUrl;
+
+
+
+
+
@dynamic propertyId;
+
+
- (int64_t)propertyIdValue {
NSNumber *result = [self propertyId];
return [result longLongValue];
@@ -760,8 +1028,14 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitivePropertyId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic propertyManagerId;
+
+
- (int64_t)propertyManagerIdValue {
NSNumber *result = [self propertyManagerId];
return [result longLongValue];
@@ -780,14 +1054,35 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitivePropertyManagerId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic qualityUrl;
+
+
+
+
+
@dynamic renterReviewedUrl;
+
+
+
+
+
@dynamic residentServicesUrl;
+
+
+
+
+
@dynamic smsOptType;
+
+
- (int16_t)smsOptTypeValue {
NSNumber *result = [self smsOptType];
return [result shortValue];
@@ -806,18 +1101,49 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveSmsOptType:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic smsTemplate;
+
+
+
+
+
@dynamic state;
+
+
+
+
+
@dynamic street1;
+
+
+
+
+
@dynamic street2;
+
+
+
+
+
@dynamic street3;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -836,14 +1162,35 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic token;
+
+
+
+
+
@dynamic twitterUrl;
+
+
+
+
+
@dynamic username;
+
+
+
+
+
@dynamic version;
+
+
- (int16_t)versionValue {
NSNumber *result = [self version];
return [result shortValue];
@@ -862,167 +1209,223 @@ const struct CommunityRelationships CommunityRelationships = {
[self setPrimitiveVersion:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic walkScoreUrl;
+
+
+
+
+
@dynamic yelpUrl;
+
+
+
+
+
@dynamic youTubeUrl;
+
+
+
+
+
@dynamic zip;
+
+
+
+
+
@dynamic amenities;
+
- (NSMutableSet*)amenitiesSet {
[self willAccessValueForKey:@"amenities"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"amenities"];
-
+
[self didAccessValueForKey:@"amenities"];
return result;
}
+
@dynamic availableCommunityGroups;
+
- (NSMutableSet*)availableCommunityGroupsSet {
[self willAccessValueForKey:@"availableCommunityGroups"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"availableCommunityGroups"];
-
+
[self didAccessValueForKey:@"availableCommunityGroups"];
return result;
}
+
@dynamic blackOutDatesForCommunity;
+
- (NSMutableSet*)blackOutDatesForCommunitySet {
[self willAccessValueForKey:@"blackOutDatesForCommunity"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"blackOutDatesForCommunity"];
-
+
[self didAccessValueForKey:@"blackOutDatesForCommunity"];
return result;
}
+
@dynamic communityGalleries;
+
- (NSMutableSet*)communityGalleriesSet {
[self willAccessValueForKey:@"communityGalleries"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"communityGalleries"];
-
+
[self didAccessValueForKey:@"communityGalleries"];
return result;
}
+
@dynamic communityUrls;
+
- (NSMutableSet*)communityUrlsSet {
[self willAccessValueForKey:@"communityUrls"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"communityUrls"];
-
+
[self didAccessValueForKey:@"communityUrls"];
return result;
}
+
@dynamic didNotLeaseReasons;
+
- (NSMutableSet*)didNotLeaseReasonsSet {
[self willAccessValueForKey:@"didNotLeaseReasons"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"didNotLeaseReasons"];
-
+
[self didAccessValueForKey:@"didNotLeaseReasons"];
return result;
}
+
@dynamic emailTemplates;
+
- (NSMutableSet*)emailTemplatesSet {
[self willAccessValueForKey:@"emailTemplates"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"emailTemplates"];
-
+
[self didAccessValueForKey:@"emailTemplates"];
return result;
}
+
@dynamic floorPlans;
+
- (NSMutableSet*)floorPlansSet {
[self willAccessValueForKey:@"floorPlans"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"floorPlans"];
-
+
[self didAccessValueForKey:@"floorPlans"];
return result;
}
+
@dynamic guestCards;
+
- (NSMutableSet*)guestCardsSet {
[self willAccessValueForKey:@"guestCards"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCards"];
-
+
[self didAccessValueForKey:@"guestCards"];
return result;
}
+
@dynamic interactionResults;
+
- (NSMutableSet*)interactionResultsSet {
[self willAccessValueForKey:@"interactionResults"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"interactionResults"];
-
+
[self didAccessValueForKey:@"interactionResults"];
return result;
}
+
@dynamic leaseTerms;
+
- (NSMutableSet*)leaseTermsSet {
[self willAccessValueForKey:@"leaseTerms"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"leaseTerms"];
-
+
[self didAccessValueForKey:@"leaseTerms"];
return result;
}
+
@dynamic marketingSources;
+
- (NSMutableSet*)marketingSourcesSet {
[self willAccessValueForKey:@"marketingSources"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"marketingSources"];
-
+
[self didAccessValueForKey:@"marketingSources"];
return result;
}
+
@dynamic quotes;
+
- (NSMutableSet*)quotesSet {
[self willAccessValueForKey:@"quotes"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"quotes"];
-
+
[self didAccessValueForKey:@"quotes"];
return result;
}
+
@dynamic units;
+
- (NSMutableSet*)unitsSet {
[self willAccessValueForKey:@"units"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"units"];
-
+
[self didAccessValueForKey:@"units"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_CommunityGallery.h b/Source/Models/MachineModels/_CommunityGallery.h
index 8f0bb50..45043a8 100644
--- a/Source/Models/MachineModels/_CommunityGallery.h
+++ b/Source/Models/MachineModels/_CommunityGallery.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct CommunityGalleryAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *communityGalleryId;
@@ -18,9 +19,20 @@ extern const struct CommunityGalleryRelationships {
__unsafe_unretained NSString *images;
} CommunityGalleryRelationships;
+extern const struct CommunityGalleryFetchedProperties {
+} CommunityGalleryFetchedProperties;
+
@class Community;
@class CommunityImage;
+
+
+
+
+
+
+
+
@interface CommunityGalleryID : NSManagedObjectID {}
@end
@@ -28,63 +40,103 @@ extern const struct CommunityGalleryRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) CommunityGalleryID* objectID;
+- (CommunityGalleryID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityGalleryId;
-@property (atomic) int64_t communityGalleryIdValue;
+
+@property int64_t communityGalleryIdValue;
- (int64_t)communityGalleryIdValue;
- (void)setCommunityGalleryIdValue:(int64_t)value_;
//- (BOOL)validateCommunityGalleryId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* sortOrder;
-@property (atomic) int16_t sortOrderValue;
+
+@property int16_t sortOrderValue;
- (int16_t)sortOrderValue;
- (void)setSortOrderValue:(int16_t)value_;
//- (BOOL)validateSortOrder:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* updated;
+
//- (BOOL)validateUpdated:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *images;
+
+
+
+@property (nonatomic, strong) NSSet* images;
- (NSMutableSet*)imagesSet;
+
+
+
+
@end
-@interface _CommunityGallery (ImagesCoreDataGeneratedAccessors)
+@interface _CommunityGallery (CoreDataGeneratedAccessors)
+
- (void)addImages:(NSSet*)value_;
- (void)removeImages:(NSSet*)value_;
- (void)addImagesObject:(CommunityImage*)value_;
@@ -94,43 +146,69 @@ extern const struct CommunityGalleryRelationships {
@interface _CommunityGallery (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveCommunityGalleryId;
- (void)setPrimitiveCommunityGalleryId:(NSNumber*)value;
- (int64_t)primitiveCommunityGalleryIdValue;
- (void)setPrimitiveCommunityGalleryIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSortOrder;
- (void)setPrimitiveSortOrder:(NSNumber*)value;
- (int16_t)primitiveSortOrderValue;
- (void)setPrimitiveSortOrderValue:(int16_t)value_;
+
+
+
- (NSDate*)primitiveUpdated;
- (void)setPrimitiveUpdated:(NSDate*)value;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
+
- (NSMutableSet*)primitiveImages;
- (void)setPrimitiveImages:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_CommunityGallery.m b/Source/Models/MachineModels/_CommunityGallery.m
index 15d276a..81d3d11 100644
--- a/Source/Models/MachineModels/_CommunityGallery.m
+++ b/Source/Models/MachineModels/_CommunityGallery.m
@@ -18,6 +18,9 @@ const struct CommunityGalleryRelationships CommunityGalleryRelationships = {
.images = @"images",
};
+const struct CommunityGalleryFetchedProperties CommunityGalleryFetchedProperties = {
+};
+
@implementation CommunityGalleryID
@end
@@ -41,35 +44,36 @@ const struct CommunityGalleryRelationships CommunityGalleryRelationships = {
return (CommunityGalleryID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityGalleryIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityGalleryId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"sortOrderValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"sortOrder"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -88,8 +92,14 @@ const struct CommunityGalleryRelationships CommunityGalleryRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic communityGalleryId;
+
+
- (int64_t)communityGalleryIdValue {
NSNumber *result = [self communityGalleryId];
return [result longLongValue];
@@ -108,8 +118,14 @@ const struct CommunityGalleryRelationships CommunityGalleryRelationships = {
[self setPrimitiveCommunityGalleryId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -128,12 +144,28 @@ const struct CommunityGalleryRelationships CommunityGalleryRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic sortOrder;
+
+
- (int16_t)sortOrderValue {
NSNumber *result = [self sortOrder];
return [result shortValue];
@@ -152,20 +184,37 @@ const struct CommunityGalleryRelationships CommunityGalleryRelationships = {
[self setPrimitiveSortOrder:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic updated;
+
+
+
+
+
@dynamic community;
+
+
@dynamic images;
+
- (NSMutableSet*)imagesSet {
[self willAccessValueForKey:@"images"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"images"];
-
+
[self didAccessValueForKey:@"images"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_CommunityGroup.h b/Source/Models/MachineModels/_CommunityGroup.h
index 937c424..d66da2d 100644
--- a/Source/Models/MachineModels/_CommunityGroup.h
+++ b/Source/Models/MachineModels/_CommunityGroup.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct CommunityGroupAttributes {
__unsafe_unretained NSString *communityGroupId;
__unsafe_unretained NSString *name;
@@ -13,9 +14,15 @@ extern const struct CommunityGroupRelationships {
__unsafe_unretained NSString *parentCommunity;
} CommunityGroupRelationships;
+extern const struct CommunityGroupFetchedProperties {
+} CommunityGroupFetchedProperties;
+
@class GuestCard;
@class Community;
+
+
+
@interface CommunityGroupID : NSManagedObjectID {}
@end
@@ -23,31 +30,51 @@ extern const struct CommunityGroupRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) CommunityGroupID* objectID;
+- (CommunityGroupID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* communityGroupId;
-@property (atomic) int64_t communityGroupIdValue;
+
+@property int64_t communityGroupIdValue;
- (int64_t)communityGroupIdValue;
- (void)setCommunityGroupIdValue:(int64_t)value_;
//- (BOOL)validateCommunityGroupId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *guestCardsForCommunityGroup;
+
+
+
+
+@property (nonatomic, strong) NSSet* guestCardsForCommunityGroup;
- (NSMutableSet*)guestCardsForCommunityGroupSet;
-@property (nonatomic, strong) Community *parentCommunity;
+
+
+
+@property (nonatomic, strong) Community* parentCommunity;
//- (BOOL)validateParentCommunity:(id*)value_ error:(NSError**)error_;
+
+
+
+
@end
-@interface _CommunityGroup (GuestCardsForCommunityGroupCoreDataGeneratedAccessors)
+@interface _CommunityGroup (CoreDataGeneratedAccessors)
+
- (void)addGuestCardsForCommunityGroup:(NSSet*)value_;
- (void)removeGuestCardsForCommunityGroup:(NSSet*)value_;
- (void)addGuestCardsForCommunityGroupObject:(GuestCard*)value_;
@@ -57,19 +84,30 @@ extern const struct CommunityGroupRelationships {
@interface _CommunityGroup (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveCommunityGroupId;
- (void)setPrimitiveCommunityGroupId:(NSNumber*)value;
- (int64_t)primitiveCommunityGroupIdValue;
- (void)setPrimitiveCommunityGroupIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
+
- (NSMutableSet*)primitiveGuestCardsForCommunityGroup;
- (void)setPrimitiveGuestCardsForCommunityGroup:(NSMutableSet*)value;
+
+
- (Community*)primitiveParentCommunity;
- (void)setPrimitiveParentCommunity:(Community*)value;
+
@end
diff --git a/Source/Models/MachineModels/_CommunityGroup.m b/Source/Models/MachineModels/_CommunityGroup.m
index ab495f4..e59e01a 100644
--- a/Source/Models/MachineModels/_CommunityGroup.m
+++ b/Source/Models/MachineModels/_CommunityGroup.m
@@ -13,6 +13,9 @@ const struct CommunityGroupRelationships CommunityGroupRelationships = {
.parentCommunity = @"parentCommunity",
};
+const struct CommunityGroupFetchedProperties CommunityGroupFetchedProperties = {
+};
+
@implementation CommunityGroupID
@end
@@ -36,20 +39,24 @@ const struct CommunityGroupRelationships CommunityGroupRelationships = {
return (CommunityGroupID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"communityGroupIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityGroupId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic communityGroupId;
+
+
- (int64_t)communityGroupIdValue {
NSNumber *result = [self communityGroupId];
return [result longLongValue];
@@ -68,20 +75,37 @@ const struct CommunityGroupRelationships CommunityGroupRelationships = {
[self setPrimitiveCommunityGroupId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic guestCardsForCommunityGroup;
+
- (NSMutableSet*)guestCardsForCommunityGroupSet {
[self willAccessValueForKey:@"guestCardsForCommunityGroup"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardsForCommunityGroup"];
-
+
[self didAccessValueForKey:@"guestCardsForCommunityGroup"];
return result;
}
+
@dynamic parentCommunity;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_CommunityImage.h b/Source/Models/MachineModels/_CommunityImage.h
index e631407..74dced2 100644
--- a/Source/Models/MachineModels/_CommunityImage.h
+++ b/Source/Models/MachineModels/_CommunityImage.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct CommunityImageAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *caption;
@@ -30,9 +31,32 @@ extern const struct CommunityImageRelationships {
__unsafe_unretained NSString *guestCards;
} CommunityImageRelationships;
+extern const struct CommunityImageFetchedProperties {
+} CommunityImageFetchedProperties;
+
@class CommunityGallery;
@class GuestCard;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@interface CommunityImageID : NSManagedObjectID {}
@end
@@ -40,143 +64,231 @@ extern const struct CommunityImageRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) CommunityImageID* objectID;
+- (CommunityImageID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* caption;
+
//- (BOOL)validateCaption:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* communityImageDescription;
+
//- (BOOL)validateCommunityImageDescription:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityImageGalleryId;
-@property (atomic) int64_t communityImageGalleryIdValue;
+
+@property int64_t communityImageGalleryIdValue;
- (int64_t)communityImageGalleryIdValue;
- (void)setCommunityImageGalleryIdValue:(int64_t)value_;
//- (BOOL)validateCommunityImageGalleryId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityImageId;
-@property (atomic) int64_t communityImageIdValue;
+
+@property int64_t communityImageIdValue;
- (int64_t)communityImageIdValue;
- (void)setCommunityImageIdValue:(int64_t)value_;
//- (BOOL)validateCommunityImageId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* imageUrl;
+
//- (BOOL)validateImageUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isBranding;
-@property (atomic) BOOL isBrandingValue;
+
+@property BOOL isBrandingValue;
- (BOOL)isBrandingValue;
- (void)setIsBrandingValue:(BOOL)value_;
//- (BOOL)validateIsBranding:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isFloorPlan;
-@property (atomic) BOOL isFloorPlanValue;
+
+@property BOOL isFloorPlanValue;
- (BOOL)isFloorPlanValue;
- (void)setIsFloorPlanValue:(BOOL)value_;
//- (BOOL)validateIsFloorPlan:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isGallery;
-@property (atomic) BOOL isGalleryValue;
+
+@property BOOL isGalleryValue;
- (BOOL)isGalleryValue;
- (void)setIsGalleryValue:(BOOL)value_;
//- (BOOL)validateIsGallery:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isHome;
-@property (atomic) BOOL isHomeValue;
+
+@property BOOL isHomeValue;
- (BOOL)isHomeValue;
- (void)setIsHomeValue:(BOOL)value_;
//- (BOOL)validateIsHome:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isInfographic;
-@property (atomic) BOOL isInfographicValue;
+
+@property BOOL isInfographicValue;
- (BOOL)isInfographicValue;
- (void)setIsInfographicValue:(BOOL)value_;
//- (BOOL)validateIsInfographic:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isLogo;
-@property (atomic) BOOL isLogoValue;
+
+@property BOOL isLogoValue;
- (BOOL)isLogoValue;
- (void)setIsLogoValue:(BOOL)value_;
//- (BOOL)validateIsLogo:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isTagline;
-@property (atomic) BOOL isTaglineValue;
+
+@property BOOL isTaglineValue;
- (BOOL)isTaglineValue;
- (void)setIsTaglineValue:(BOOL)value_;
//- (BOOL)validateIsTagline:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* title;
+
//- (BOOL)validateTitle:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) CommunityGallery *gallery;
+
+
+
+
+@property (nonatomic, strong) CommunityGallery* gallery;
//- (BOOL)validateGallery:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *guestCards;
+
+
+
+@property (nonatomic, strong) NSSet* guestCards;
- (NSMutableSet*)guestCardsSet;
+
+
+
+
@end
-@interface _CommunityImage (GuestCardsCoreDataGeneratedAccessors)
+@interface _CommunityImage (CoreDataGeneratedAccessors)
+
- (void)addGuestCards:(NSSet*)value_;
- (void)removeGuestCards:(NSSet*)value_;
- (void)addGuestCardsObject:(GuestCard*)value_;
@@ -186,103 +298,165 @@ extern const struct CommunityImageRelationships {
@interface _CommunityImage (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveCaption;
- (void)setPrimitiveCaption:(NSString*)value;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveCommunityImageDescription;
- (void)setPrimitiveCommunityImageDescription:(NSString*)value;
+
+
+
- (NSNumber*)primitiveCommunityImageGalleryId;
- (void)setPrimitiveCommunityImageGalleryId:(NSNumber*)value;
- (int64_t)primitiveCommunityImageGalleryIdValue;
- (void)setPrimitiveCommunityImageGalleryIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveCommunityImageId;
- (void)setPrimitiveCommunityImageId:(NSNumber*)value;
- (int64_t)primitiveCommunityImageIdValue;
- (void)setPrimitiveCommunityImageIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSString*)primitiveImageUrl;
- (void)setPrimitiveImageUrl:(NSString*)value;
+
+
+
- (NSNumber*)primitiveIsBranding;
- (void)setPrimitiveIsBranding:(NSNumber*)value;
- (BOOL)primitiveIsBrandingValue;
- (void)setPrimitiveIsBrandingValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsFloorPlan;
- (void)setPrimitiveIsFloorPlan:(NSNumber*)value;
- (BOOL)primitiveIsFloorPlanValue;
- (void)setPrimitiveIsFloorPlanValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsGallery;
- (void)setPrimitiveIsGallery:(NSNumber*)value;
- (BOOL)primitiveIsGalleryValue;
- (void)setPrimitiveIsGalleryValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsHome;
- (void)setPrimitiveIsHome:(NSNumber*)value;
- (BOOL)primitiveIsHomeValue;
- (void)setPrimitiveIsHomeValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsInfographic;
- (void)setPrimitiveIsInfographic:(NSNumber*)value;
- (BOOL)primitiveIsInfographicValue;
- (void)setPrimitiveIsInfographicValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsLogo;
- (void)setPrimitiveIsLogo:(NSNumber*)value;
- (BOOL)primitiveIsLogoValue;
- (void)setPrimitiveIsLogoValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsTagline;
- (void)setPrimitiveIsTagline:(NSNumber*)value;
- (BOOL)primitiveIsTaglineValue;
- (void)setPrimitiveIsTaglineValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveTitle;
- (void)setPrimitiveTitle:(NSString*)value;
+
+
+
+
- (CommunityGallery*)primitiveGallery;
- (void)setPrimitiveGallery:(CommunityGallery*)value;
+
+
- (NSMutableSet*)primitiveGuestCards;
- (void)setPrimitiveGuestCards:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_CommunityImage.m b/Source/Models/MachineModels/_CommunityImage.m
index 3eeeb55..d17306a 100644
--- a/Source/Models/MachineModels/_CommunityImage.m
+++ b/Source/Models/MachineModels/_CommunityImage.m
@@ -30,6 +30,9 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
.guestCards = @"guestCards",
};
+const struct CommunityImageFetchedProperties CommunityImageFetchedProperties = {
+};
+
@implementation CommunityImageID
@end
@@ -53,75 +56,68 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
return (CommunityImageID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityImageGalleryIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityImageGalleryId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityImageIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityImageId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isBrandingValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isBranding"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isFloorPlanValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isFloorPlan"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isGalleryValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isGallery"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isHomeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isHome"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isInfographicValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isInfographic"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isLogoValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isLogo"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isTaglineValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isTagline"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -140,10 +136,21 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic caption;
+
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -162,10 +169,21 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic communityImageDescription;
+
+
+
+
+
@dynamic communityImageGalleryId;
+
+
- (int64_t)communityImageGalleryIdValue {
NSNumber *result = [self communityImageGalleryId];
return [result longLongValue];
@@ -184,8 +202,14 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveCommunityImageGalleryId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic communityImageId;
+
+
- (int64_t)communityImageIdValue {
NSNumber *result = [self communityImageId];
return [result longLongValue];
@@ -204,12 +228,28 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveCommunityImageId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic imageUrl;
+
+
+
+
+
@dynamic isBranding;
+
+
- (BOOL)isBrandingValue {
NSNumber *result = [self isBranding];
return [result boolValue];
@@ -228,8 +268,14 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveIsBranding:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isFloorPlan;
+
+
- (BOOL)isFloorPlanValue {
NSNumber *result = [self isFloorPlan];
return [result boolValue];
@@ -248,8 +294,14 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveIsFloorPlan:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isGallery;
+
+
- (BOOL)isGalleryValue {
NSNumber *result = [self isGallery];
return [result boolValue];
@@ -268,8 +320,14 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveIsGallery:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isHome;
+
+
- (BOOL)isHomeValue {
NSNumber *result = [self isHome];
return [result boolValue];
@@ -288,8 +346,14 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveIsHome:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isInfographic;
+
+
- (BOOL)isInfographicValue {
NSNumber *result = [self isInfographic];
return [result boolValue];
@@ -308,8 +372,14 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveIsInfographic:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isLogo;
+
+
- (BOOL)isLogoValue {
NSNumber *result = [self isLogo];
return [result boolValue];
@@ -328,8 +398,14 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveIsLogo:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isTagline;
+
+
- (BOOL)isTaglineValue {
NSNumber *result = [self isTagline];
return [result boolValue];
@@ -348,12 +424,28 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveIsTagline:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -372,20 +464,37 @@ const struct CommunityImageRelationships CommunityImageRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic title;
+
+
+
+
+
@dynamic gallery;
+
+
@dynamic guestCards;
+
- (NSMutableSet*)guestCardsSet {
[self willAccessValueForKey:@"guestCards"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCards"];
-
+
[self didAccessValueForKey:@"guestCards"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_CommunityUrl.h b/Source/Models/MachineModels/_CommunityUrl.h
index fccf9ed..bf9e9d1 100644
--- a/Source/Models/MachineModels/_CommunityUrl.h
+++ b/Source/Models/MachineModels/_CommunityUrl.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct CommunityUrlAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *communityId;
@@ -18,8 +19,20 @@ extern const struct CommunityUrlRelationships {
__unsafe_unretained NSString *community;
} CommunityUrlRelationships;
+extern const struct CommunityUrlFetchedProperties {
+} CommunityUrlFetchedProperties;
+
@class Community;
+
+
+
+
+
+
+
+
+
@interface CommunityUrlID : NSManagedObjectID {}
@end
@@ -27,101 +40,172 @@ extern const struct CommunityUrlRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) CommunityUrlID* objectID;
+- (CommunityUrlID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int32_t communityIdValue;
+
+@property int32_t communityIdValue;
- (int32_t)communityIdValue;
- (void)setCommunityIdValue:(int32_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityUrlId;
-@property (atomic) int32_t communityUrlIdValue;
+
+@property int32_t communityUrlIdValue;
- (int32_t)communityUrlIdValue;
- (void)setCommunityUrlIdValue:(int32_t)value_;
//- (BOOL)validateCommunityUrlId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* sortOrder;
-@property (atomic) int16_t sortOrderValue;
+
+@property int16_t sortOrderValue;
- (int16_t)sortOrderValue;
- (void)setSortOrderValue:(int16_t)value_;
//- (BOOL)validateSortOrder:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* updated;
+
//- (BOOL)validateUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* url;
+
//- (BOOL)validateUrl:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _CommunityUrl (CoreDataGeneratedAccessors)
+
@end
@interface _CommunityUrl (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int32_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int32_t)value_;
+
+
+
- (NSNumber*)primitiveCommunityUrlId;
- (void)setPrimitiveCommunityUrlId:(NSNumber*)value;
- (int32_t)primitiveCommunityUrlIdValue;
- (void)setPrimitiveCommunityUrlIdValue:(int32_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSortOrder;
- (void)setPrimitiveSortOrder:(NSNumber*)value;
- (int16_t)primitiveSortOrderValue;
- (void)setPrimitiveSortOrderValue:(int16_t)value_;
+
+
+
- (NSDate*)primitiveUpdated;
- (void)setPrimitiveUpdated:(NSDate*)value;
+
+
+
- (NSString*)primitiveUrl;
- (void)setPrimitiveUrl:(NSString*)value;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
@end
diff --git a/Source/Models/MachineModels/_CommunityUrl.m b/Source/Models/MachineModels/_CommunityUrl.m
index 4cc0b4d..dad0865 100644
--- a/Source/Models/MachineModels/_CommunityUrl.m
+++ b/Source/Models/MachineModels/_CommunityUrl.m
@@ -18,6 +18,9 @@ const struct CommunityUrlRelationships CommunityUrlRelationships = {
.community = @"community",
};
+const struct CommunityUrlFetchedProperties CommunityUrlFetchedProperties = {
+};
+
@implementation CommunityUrlID
@end
@@ -41,35 +44,36 @@ const struct CommunityUrlRelationships CommunityUrlRelationships = {
return (CommunityUrlID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityUrlIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityUrlId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"sortOrderValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"sortOrder"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -88,8 +92,14 @@ const struct CommunityUrlRelationships CommunityUrlRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic communityId;
+
+
- (int32_t)communityIdValue {
NSNumber *result = [self communityId];
return [result intValue];
@@ -108,8 +118,14 @@ const struct CommunityUrlRelationships CommunityUrlRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithInt:value_]];
}
+
+
+
+
@dynamic communityUrlId;
+
+
- (int32_t)communityUrlIdValue {
NSNumber *result = [self communityUrlId];
return [result intValue];
@@ -128,12 +144,28 @@ const struct CommunityUrlRelationships CommunityUrlRelationships = {
[self setPrimitiveCommunityUrlId:[NSNumber numberWithInt:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic sortOrder;
+
+
- (int16_t)sortOrderValue {
NSNumber *result = [self sortOrder];
return [result shortValue];
@@ -152,11 +184,31 @@ const struct CommunityUrlRelationships CommunityUrlRelationships = {
[self setPrimitiveSortOrder:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic updated;
+
+
+
+
+
@dynamic url;
+
+
+
+
+
@dynamic community;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_DidNotLeaseReason.h b/Source/Models/MachineModels/_DidNotLeaseReason.h
index 3de5583..f844f5c 100644
--- a/Source/Models/MachineModels/_DidNotLeaseReason.h
+++ b/Source/Models/MachineModels/_DidNotLeaseReason.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct DidNotLeaseReasonAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *created;
@@ -18,9 +19,20 @@ extern const struct DidNotLeaseReasonRelationships {
__unsafe_unretained NSString *guestCardsForDidNotLeaseReason;
} DidNotLeaseReasonRelationships;
+extern const struct DidNotLeaseReasonFetchedProperties {
+} DidNotLeaseReasonFetchedProperties;
+
@class Community;
@class GuestCard;
+
+
+
+
+
+
+
+
@interface DidNotLeaseReasonID : NSManagedObjectID {}
@end
@@ -28,59 +40,99 @@ extern const struct DidNotLeaseReasonRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) DidNotLeaseReasonID* objectID;
+- (DidNotLeaseReasonID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* didNotLeaseReasonId;
-@property (atomic) int64_t didNotLeaseReasonIdValue;
+
+@property int64_t didNotLeaseReasonIdValue;
- (int64_t)didNotLeaseReasonIdValue;
- (void)setDidNotLeaseReasonIdValue:(int64_t)value_;
//- (BOOL)validateDidNotLeaseReasonId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* reason;
+
//- (BOOL)validateReason:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *guestCardsForDidNotLeaseReason;
+
+
+
+@property (nonatomic, strong) NSSet* guestCardsForDidNotLeaseReason;
- (NSMutableSet*)guestCardsForDidNotLeaseReasonSet;
+
+
+
+
@end
-@interface _DidNotLeaseReason (GuestCardsForDidNotLeaseReasonCoreDataGeneratedAccessors)
+@interface _DidNotLeaseReason (CoreDataGeneratedAccessors)
+
- (void)addGuestCardsForDidNotLeaseReason:(NSSet*)value_;
- (void)removeGuestCardsForDidNotLeaseReason:(NSSet*)value_;
- (void)addGuestCardsForDidNotLeaseReasonObject:(GuestCard*)value_;
@@ -90,40 +142,66 @@ extern const struct DidNotLeaseReasonRelationships {
@interface _DidNotLeaseReason (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveDidNotLeaseReasonId;
- (void)setPrimitiveDidNotLeaseReasonId:(NSNumber*)value;
- (int64_t)primitiveDidNotLeaseReasonIdValue;
- (void)setPrimitiveDidNotLeaseReasonIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSString*)primitiveReason;
- (void)setPrimitiveReason:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
+
- (NSMutableSet*)primitiveGuestCardsForDidNotLeaseReason;
- (void)setPrimitiveGuestCardsForDidNotLeaseReason:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_DidNotLeaseReason.m b/Source/Models/MachineModels/_DidNotLeaseReason.m
index 41dc359..0bc825d 100644
--- a/Source/Models/MachineModels/_DidNotLeaseReason.m
+++ b/Source/Models/MachineModels/_DidNotLeaseReason.m
@@ -18,6 +18,9 @@ const struct DidNotLeaseReasonRelationships DidNotLeaseReasonRelationships = {
.guestCardsForDidNotLeaseReason = @"guestCardsForDidNotLeaseReason",
};
+const struct DidNotLeaseReasonFetchedProperties DidNotLeaseReasonFetchedProperties = {
+};
+
@implementation DidNotLeaseReasonID
@end
@@ -41,30 +44,32 @@ const struct DidNotLeaseReasonRelationships DidNotLeaseReasonRelationships = {
return (DidNotLeaseReasonID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"didNotLeaseReasonIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"didNotLeaseReasonId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -83,10 +88,21 @@ const struct DidNotLeaseReasonRelationships DidNotLeaseReasonRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic didNotLeaseReasonId;
+
+
- (int64_t)didNotLeaseReasonIdValue {
NSNumber *result = [self didNotLeaseReasonId];
return [result longLongValue];
@@ -105,14 +121,35 @@ const struct DidNotLeaseReasonRelationships DidNotLeaseReasonRelationships = {
[self setPrimitiveDidNotLeaseReasonId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic reason;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -131,18 +168,30 @@ const struct DidNotLeaseReasonRelationships DidNotLeaseReasonRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic community;
+
+
@dynamic guestCardsForDidNotLeaseReason;
+
- (NSMutableSet*)guestCardsForDidNotLeaseReasonSet {
[self willAccessValueForKey:@"guestCardsForDidNotLeaseReason"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardsForDidNotLeaseReason"];
-
+
[self didAccessValueForKey:@"guestCardsForDidNotLeaseReason"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_EmailTemplate.h b/Source/Models/MachineModels/_EmailTemplate.h
index 5ace0cb..69a3a8e 100644
--- a/Source/Models/MachineModels/_EmailTemplate.h
+++ b/Source/Models/MachineModels/_EmailTemplate.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct EmailTemplateAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *communityId;
@@ -15,8 +16,17 @@ extern const struct EmailTemplateRelationships {
__unsafe_unretained NSString *community;
} EmailTemplateRelationships;
+extern const struct EmailTemplateFetchedProperties {
+} EmailTemplateFetchedProperties;
+
@class Community;
+
+
+
+
+
+
@interface EmailTemplateID : NSManagedObjectID {}
@end
@@ -24,73 +34,123 @@ extern const struct EmailTemplateRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) EmailTemplateID* objectID;
+- (EmailTemplateID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int32_t communityIdValue;
+
+@property int32_t communityIdValue;
- (int32_t)communityIdValue;
- (void)setCommunityIdValue:(int32_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* content;
+
//- (BOOL)validateContent:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* emailTemplateId;
-@property (atomic) int32_t emailTemplateIdValue;
+
+@property int32_t emailTemplateIdValue;
- (int32_t)emailTemplateIdValue;
- (void)setEmailTemplateIdValue:(int32_t)value_;
//- (BOOL)validateEmailTemplateId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _EmailTemplate (CoreDataGeneratedAccessors)
+
@end
@interface _EmailTemplate (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int32_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int32_t)value_;
+
+
+
- (NSString*)primitiveContent;
- (void)setPrimitiveContent:(NSString*)value;
+
+
+
- (NSNumber*)primitiveEmailTemplateId;
- (void)setPrimitiveEmailTemplateId:(NSNumber*)value;
- (int32_t)primitiveEmailTemplateIdValue;
- (void)setPrimitiveEmailTemplateIdValue:(int32_t)value_;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
@end
diff --git a/Source/Models/MachineModels/_EmailTemplate.m b/Source/Models/MachineModels/_EmailTemplate.m
index 560ddb6..ffd06aa 100644
--- a/Source/Models/MachineModels/_EmailTemplate.m
+++ b/Source/Models/MachineModels/_EmailTemplate.m
@@ -15,6 +15,9 @@ const struct EmailTemplateRelationships EmailTemplateRelationships = {
.community = @"community",
};
+const struct EmailTemplateFetchedProperties EmailTemplateFetchedProperties = {
+};
+
@implementation EmailTemplateID
@end
@@ -38,30 +41,32 @@ const struct EmailTemplateRelationships EmailTemplateRelationships = {
return (EmailTemplateID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"emailTemplateIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"emailTemplateId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -80,8 +85,14 @@ const struct EmailTemplateRelationships EmailTemplateRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic communityId;
+
+
- (int32_t)communityIdValue {
NSNumber *result = [self communityId];
return [result intValue];
@@ -100,10 +111,21 @@ const struct EmailTemplateRelationships EmailTemplateRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithInt:value_]];
}
+
+
+
+
@dynamic content;
+
+
+
+
+
@dynamic emailTemplateId;
+
+
- (int32_t)emailTemplateIdValue {
NSNumber *result = [self emailTemplateId];
return [result intValue];
@@ -122,9 +144,24 @@ const struct EmailTemplateRelationships EmailTemplateRelationships = {
[self setPrimitiveEmailTemplateId:[NSNumber numberWithInt:value_]];
}
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic community;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_Feature.h b/Source/Models/MachineModels/_Feature.h
index 19edd3d..c8f85c9 100644
--- a/Source/Models/MachineModels/_Feature.h
+++ b/Source/Models/MachineModels/_Feature.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct FeatureAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *category;
@@ -20,10 +21,22 @@ extern const struct FeatureRelationships {
__unsafe_unretained NSString *unitFeatures;
} FeatureRelationships;
+extern const struct FeatureFetchedProperties {
+} FeatureFetchedProperties;
+
@class GuestCard;
@class GuestCard;
@class Unit;
+
+
+
+
+
+
+
+
+
@interface FeatureID : NSManagedObjectID {}
@end
@@ -31,83 +44,124 @@ extern const struct FeatureRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) FeatureID* objectID;
+- (FeatureID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* category;
+
//- (BOOL)validateCategory:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* featureId;
-@property (atomic) int64_t featureIdValue;
+
+@property int64_t featureIdValue;
- (int64_t)featureIdValue;
- (void)setFeatureIdValue:(int64_t)value_;
//- (BOOL)validateFeatureId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *guestCardFeatures;
+
+
+
+
+@property (nonatomic, strong) NSSet* guestCardFeatures;
- (NSMutableSet*)guestCardFeaturesSet;
-@property (nonatomic, strong) NSSet *guestCardPreferences;
+
+
+
+@property (nonatomic, strong) NSSet* guestCardPreferences;
- (NSMutableSet*)guestCardPreferencesSet;
-@property (nonatomic, strong) NSSet *unitFeatures;
+
+
+
+@property (nonatomic, strong) NSSet* unitFeatures;
- (NSMutableSet*)unitFeaturesSet;
+
+
+
+
@end
-@interface _Feature (GuestCardFeaturesCoreDataGeneratedAccessors)
+@interface _Feature (CoreDataGeneratedAccessors)
+
- (void)addGuestCardFeatures:(NSSet*)value_;
- (void)removeGuestCardFeatures:(NSSet*)value_;
- (void)addGuestCardFeaturesObject:(GuestCard*)value_;
- (void)removeGuestCardFeaturesObject:(GuestCard*)value_;
-@end
-
-@interface _Feature (GuestCardPreferencesCoreDataGeneratedAccessors)
- (void)addGuestCardPreferences:(NSSet*)value_;
- (void)removeGuestCardPreferences:(NSSet*)value_;
- (void)addGuestCardPreferencesObject:(GuestCard*)value_;
- (void)removeGuestCardPreferencesObject:(GuestCard*)value_;
-@end
-
-@interface _Feature (UnitFeaturesCoreDataGeneratedAccessors)
- (void)addUnitFeatures:(NSSet*)value_;
- (void)removeUnitFeatures:(NSSet*)value_;
- (void)addUnitFeaturesObject:(Unit*)value_;
@@ -117,46 +171,77 @@ extern const struct FeatureRelationships {
@interface _Feature (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveCategory;
- (void)setPrimitiveCategory:(NSString*)value;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveFeatureId;
- (void)setPrimitiveFeatureId:(NSNumber*)value;
- (int64_t)primitiveFeatureIdValue;
- (void)setPrimitiveFeatureIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
+
- (NSMutableSet*)primitiveGuestCardFeatures;
- (void)setPrimitiveGuestCardFeatures:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveGuestCardPreferences;
- (void)setPrimitiveGuestCardPreferences:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveUnitFeatures;
- (void)setPrimitiveUnitFeatures:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_Feature.m b/Source/Models/MachineModels/_Feature.m
index 21790bd..5ed3e3d 100644
--- a/Source/Models/MachineModels/_Feature.m
+++ b/Source/Models/MachineModels/_Feature.m
@@ -20,6 +20,9 @@ const struct FeatureRelationships FeatureRelationships = {
.unitFeatures = @"unitFeatures",
};
+const struct FeatureFetchedProperties FeatureFetchedProperties = {
+};
+
@implementation FeatureID
@end
@@ -43,30 +46,32 @@ const struct FeatureRelationships FeatureRelationships = {
return (FeatureID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"featureIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"featureId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -85,12 +90,28 @@ const struct FeatureRelationships FeatureRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic category;
+
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic featureId;
+
+
- (int64_t)featureIdValue {
NSNumber *result = [self featureId];
return [result longLongValue];
@@ -109,14 +130,35 @@ const struct FeatureRelationships FeatureRelationships = {
[self setPrimitiveFeatureId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -135,38 +177,52 @@ const struct FeatureRelationships FeatureRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic guestCardFeatures;
+
- (NSMutableSet*)guestCardFeaturesSet {
[self willAccessValueForKey:@"guestCardFeatures"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardFeatures"];
-
+
[self didAccessValueForKey:@"guestCardFeatures"];
return result;
}
+
@dynamic guestCardPreferences;
+
- (NSMutableSet*)guestCardPreferencesSet {
[self willAccessValueForKey:@"guestCardPreferences"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardPreferences"];
-
+
[self didAccessValueForKey:@"guestCardPreferences"];
return result;
}
+
@dynamic unitFeatures;
+
- (NSMutableSet*)unitFeaturesSet {
[self willAccessValueForKey:@"unitFeatures"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"unitFeatures"];
-
+
[self didAccessValueForKey:@"unitFeatures"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_FloorPlan.h b/Source/Models/MachineModels/_FloorPlan.h
index 0292b69..9658391 100644
--- a/Source/Models/MachineModels/_FloorPlan.h
+++ b/Source/Models/MachineModels/_FloorPlan.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct FloorPlanAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *baths;
@@ -31,10 +32,33 @@ extern const struct FloorPlanRelationships {
__unsafe_unretained NSString *units;
} FloorPlanRelationships;
+extern const struct FloorPlanFetchedProperties {
+} FloorPlanFetchedProperties;
+
@class Community;
@class GuestCard;
@class Unit;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@interface FloorPlanID : NSManagedObjectID {}
@end
@@ -42,159 +66,247 @@ extern const struct FloorPlanRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) FloorPlanID* objectID;
+- (FloorPlanID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* baths;
-@property (atomic) double bathsValue;
+
+@property double bathsValue;
- (double)bathsValue;
- (void)setBathsValue:(double)value_;
//- (BOOL)validateBaths:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* bedrooms;
-@property (atomic) double bedroomsValue;
+
+@property double bedroomsValue;
- (double)bedroomsValue;
- (void)setBedroomsValue:(double)value_;
//- (BOOL)validateBedrooms:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* code;
+
//- (BOOL)validateCode:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* display;
-@property (atomic) BOOL displayValue;
+
+@property BOOL displayValue;
- (BOOL)displayValue;
- (void)setDisplayValue:(BOOL)value_;
//- (BOOL)validateDisplay:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* floorPlanId;
-@property (atomic) int64_t floorPlanIdValue;
+
+@property int64_t floorPlanIdValue;
- (int64_t)floorPlanIdValue;
- (void)setFloorPlanIdValue:(int64_t)value_;
//- (BOOL)validateFloorPlanId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* footage;
-@property (atomic) int16_t footageValue;
+
+@property int16_t footageValue;
- (int16_t)footageValue;
- (void)setFootageValue:(int16_t)value_;
//- (BOOL)validateFootage:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* livingSpaces;
-@property (atomic) int16_t livingSpacesValue;
+
+@property int16_t livingSpacesValue;
- (int16_t)livingSpacesValue;
- (void)setLivingSpacesValue:(int16_t)value_;
//- (BOOL)validateLivingSpaces:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* maxOccupancy;
-@property (atomic) int16_t maxOccupancyValue;
+
+@property int16_t maxOccupancyValue;
- (int16_t)maxOccupancyValue;
- (void)setMaxOccupancyValue:(int16_t)value_;
//- (BOOL)validateMaxOccupancy:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* planUrl;
+
//- (BOOL)validatePlanUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* propertyId;
-@property (atomic) int64_t propertyIdValue;
+
+@property int64_t propertyIdValue;
- (int64_t)propertyIdValue;
- (void)setPropertyIdValue:(int64_t)value_;
//- (BOOL)validatePropertyId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* studio;
-@property (atomic) BOOL studioValue;
+
+@property BOOL studioValue;
- (BOOL)studioValue;
- (void)setStudioValue:(BOOL)value_;
//- (BOOL)validateStudio:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* thirdPartyPrimaryKey;
-@property (atomic) int64_t thirdPartyPrimaryKeyValue;
+
+@property int64_t thirdPartyPrimaryKeyValue;
- (int64_t)thirdPartyPrimaryKeyValue;
- (void)setThirdPartyPrimaryKeyValue:(int64_t)value_;
//- (BOOL)validateThirdPartyPrimaryKey:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *guestCards;
+
+
+
+@property (nonatomic, strong) NSSet* guestCards;
- (NSMutableSet*)guestCardsSet;
-@property (nonatomic, strong) NSSet *units;
+
+
+
+@property (nonatomic, strong) NSSet* units;
- (NSMutableSet*)unitsSet;
+
+
+
+
@end
-@interface _FloorPlan (GuestCardsCoreDataGeneratedAccessors)
+@interface _FloorPlan (CoreDataGeneratedAccessors)
+
- (void)addGuestCards:(NSSet*)value_;
- (void)removeGuestCards:(NSSet*)value_;
- (void)addGuestCardsObject:(GuestCard*)value_;
- (void)removeGuestCardsObject:(GuestCard*)value_;
-@end
-
-@interface _FloorPlan (UnitsCoreDataGeneratedAccessors)
- (void)addUnits:(NSSet*)value_;
- (void)removeUnits:(NSSet*)value_;
- (void)addUnitsObject:(Unit*)value_;
@@ -204,109 +316,173 @@ extern const struct FloorPlanRelationships {
@interface _FloorPlan (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveBaths;
- (void)setPrimitiveBaths:(NSNumber*)value;
- (double)primitiveBathsValue;
- (void)setPrimitiveBathsValue:(double)value_;
+
+
+
- (NSNumber*)primitiveBedrooms;
- (void)setPrimitiveBedrooms:(NSNumber*)value;
- (double)primitiveBedroomsValue;
- (void)setPrimitiveBedroomsValue:(double)value_;
+
+
+
- (NSString*)primitiveCode;
- (void)setPrimitiveCode:(NSString*)value;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveDisplay;
- (void)setPrimitiveDisplay:(NSNumber*)value;
- (BOOL)primitiveDisplayValue;
- (void)setPrimitiveDisplayValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveFloorPlanId;
- (void)setPrimitiveFloorPlanId:(NSNumber*)value;
- (int64_t)primitiveFloorPlanIdValue;
- (void)setPrimitiveFloorPlanIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveFootage;
- (void)setPrimitiveFootage:(NSNumber*)value;
- (int16_t)primitiveFootageValue;
- (void)setPrimitiveFootageValue:(int16_t)value_;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveLivingSpaces;
- (void)setPrimitiveLivingSpaces:(NSNumber*)value;
- (int16_t)primitiveLivingSpacesValue;
- (void)setPrimitiveLivingSpacesValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveMaxOccupancy;
- (void)setPrimitiveMaxOccupancy:(NSNumber*)value;
- (int16_t)primitiveMaxOccupancyValue;
- (void)setPrimitiveMaxOccupancyValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSString*)primitivePlanUrl;
- (void)setPrimitivePlanUrl:(NSString*)value;
+
+
+
- (NSNumber*)primitivePropertyId;
- (void)setPrimitivePropertyId:(NSNumber*)value;
- (int64_t)primitivePropertyIdValue;
- (void)setPrimitivePropertyIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveStudio;
- (void)setPrimitiveStudio:(NSNumber*)value;
- (BOOL)primitiveStudioValue;
- (void)setPrimitiveStudioValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveThirdPartyPrimaryKey;
- (void)setPrimitiveThirdPartyPrimaryKey:(NSNumber*)value;
- (int64_t)primitiveThirdPartyPrimaryKeyValue;
- (void)setPrimitiveThirdPartyPrimaryKeyValue:(int64_t)value_;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
+
- (NSMutableSet*)primitiveGuestCards;
- (void)setPrimitiveGuestCards:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveUnits;
- (void)setPrimitiveUnits:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_FloorPlan.m b/Source/Models/MachineModels/_FloorPlan.m
index 1f7c7e9..c357cb9 100644
--- a/Source/Models/MachineModels/_FloorPlan.m
+++ b/Source/Models/MachineModels/_FloorPlan.m
@@ -31,6 +31,9 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
.units = @"units",
};
+const struct FloorPlanFetchedProperties FloorPlanFetchedProperties = {
+};
+
@implementation FloorPlanID
@end
@@ -54,80 +57,72 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
return (FloorPlanID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"bathsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"baths"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"bedroomsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"bedrooms"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"displayValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"display"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"floorPlanIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"floorPlanId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"footageValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"footage"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"livingSpacesValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"livingSpaces"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"maxOccupancyValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"maxOccupancy"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"propertyIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"propertyId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"studioValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"studio"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"thirdPartyPrimaryKeyValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"thirdPartyPrimaryKey"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -146,8 +141,14 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic baths;
+
+
- (double)bathsValue {
NSNumber *result = [self baths];
return [result doubleValue];
@@ -166,8 +167,14 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveBaths:[NSNumber numberWithDouble:value_]];
}
+
+
+
+
@dynamic bedrooms;
+
+
- (double)bedroomsValue {
NSNumber *result = [self bedrooms];
return [result doubleValue];
@@ -186,10 +193,21 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveBedrooms:[NSNumber numberWithDouble:value_]];
}
+
+
+
+
@dynamic code;
+
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -208,10 +226,21 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic display;
+
+
- (BOOL)displayValue {
NSNumber *result = [self display];
return [result boolValue];
@@ -230,8 +259,14 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveDisplay:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic floorPlanId;
+
+
- (int64_t)floorPlanIdValue {
NSNumber *result = [self floorPlanId];
return [result longLongValue];
@@ -250,8 +285,14 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveFloorPlanId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic footage;
+
+
- (int16_t)footageValue {
NSNumber *result = [self footage];
return [result shortValue];
@@ -270,12 +311,28 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveFootage:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic livingSpaces;
+
+
- (int16_t)livingSpacesValue {
NSNumber *result = [self livingSpaces];
return [result shortValue];
@@ -294,8 +351,14 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveLivingSpaces:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic maxOccupancy;
+
+
- (int16_t)maxOccupancyValue {
NSNumber *result = [self maxOccupancy];
return [result shortValue];
@@ -314,12 +377,28 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveMaxOccupancy:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic planUrl;
+
+
+
+
+
@dynamic propertyId;
+
+
- (int64_t)propertyIdValue {
NSNumber *result = [self propertyId];
return [result longLongValue];
@@ -338,8 +417,14 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitivePropertyId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic studio;
+
+
- (BOOL)studioValue {
NSNumber *result = [self studio];
return [result boolValue];
@@ -358,8 +443,14 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveStudio:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -378,8 +469,14 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic thirdPartyPrimaryKey;
+
+
- (int64_t)thirdPartyPrimaryKeyValue {
NSNumber *result = [self thirdPartyPrimaryKey];
return [result longLongValue];
@@ -398,29 +495,43 @@ const struct FloorPlanRelationships FloorPlanRelationships = {
[self setPrimitiveThirdPartyPrimaryKey:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic community;
+
+
@dynamic guestCards;
+
- (NSMutableSet*)guestCardsSet {
[self willAccessValueForKey:@"guestCards"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCards"];
-
+
[self didAccessValueForKey:@"guestCards"];
return result;
}
+
@dynamic units;
+
- (NSMutableSet*)unitsSet {
[self willAccessValueForKey:@"units"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"units"];
-
+
[self didAccessValueForKey:@"units"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_FloorPlate.h b/Source/Models/MachineModels/_FloorPlate.h
index bc21df2..12cc4d6 100644
--- a/Source/Models/MachineModels/_FloorPlate.h
+++ b/Source/Models/MachineModels/_FloorPlate.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct FloorPlateAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *floorNumber;
@@ -17,8 +18,19 @@ extern const struct FloorPlateRelationships {
__unsafe_unretained NSString *units;
} FloorPlateRelationships;
+extern const struct FloorPlateFetchedProperties {
+} FloorPlateFetchedProperties;
+
@class Unit;
+
+
+
+
+
+
+
+
@interface FloorPlateID : NSManagedObjectID {}
@end
@@ -26,51 +38,88 @@ extern const struct FloorPlateRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) FloorPlateID* objectID;
+- (FloorPlateID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* floorNumber;
+
//- (BOOL)validateFloorNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* floorPlateDescription;
+
//- (BOOL)validateFloorPlateDescription:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* floorPlateId;
-@property (atomic) int64_t floorPlateIdValue;
+
+@property int64_t floorPlateIdValue;
- (int64_t)floorPlateIdValue;
- (void)setFloorPlateIdValue:(int64_t)value_;
//- (BOOL)validateFloorPlateId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* imageURL;
+
//- (BOOL)validateImageURL:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *units;
+
+
+
+
+@property (nonatomic, strong) NSSet* units;
- (NSMutableSet*)unitsSet;
+
+
+
+
@end
-@interface _FloorPlate (UnitsCoreDataGeneratedAccessors)
+@interface _FloorPlate (CoreDataGeneratedAccessors)
+
- (void)addUnits:(NSSet*)value_;
- (void)removeUnits:(NSSet*)value_;
- (void)addUnitsObject:(Unit*)value_;
@@ -80,34 +129,58 @@ extern const struct FloorPlateRelationships {
@interface _FloorPlate (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveFloorNumber;
- (void)setPrimitiveFloorNumber:(NSString*)value;
+
+
+
- (NSString*)primitiveFloorPlateDescription;
- (void)setPrimitiveFloorPlateDescription:(NSString*)value;
+
+
+
- (NSNumber*)primitiveFloorPlateId;
- (void)setPrimitiveFloorPlateId:(NSNumber*)value;
- (int64_t)primitiveFloorPlateIdValue;
- (void)setPrimitiveFloorPlateIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveImageURL;
- (void)setPrimitiveImageURL:(NSString*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
+
- (NSMutableSet*)primitiveUnits;
- (void)setPrimitiveUnits:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_FloorPlate.m b/Source/Models/MachineModels/_FloorPlate.m
index 103d22c..c57d734 100644
--- a/Source/Models/MachineModels/_FloorPlate.m
+++ b/Source/Models/MachineModels/_FloorPlate.m
@@ -17,6 +17,9 @@ const struct FloorPlateRelationships FloorPlateRelationships = {
.units = @"units",
};
+const struct FloorPlateFetchedProperties FloorPlateFetchedProperties = {
+};
+
@implementation FloorPlateID
@end
@@ -40,25 +43,28 @@ const struct FloorPlateRelationships FloorPlateRelationships = {
return (FloorPlateID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"floorPlateIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"floorPlateId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -77,12 +83,28 @@ const struct FloorPlateRelationships FloorPlateRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic floorNumber;
+
+
+
+
+
@dynamic floorPlateDescription;
+
+
+
+
+
@dynamic floorPlateId;
+
+
- (int64_t)floorPlateIdValue {
NSNumber *result = [self floorPlateId];
return [result longLongValue];
@@ -101,22 +123,47 @@ const struct FloorPlateRelationships FloorPlateRelationships = {
[self setPrimitiveFloorPlateId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic imageURL;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic units;
+
- (NSMutableSet*)unitsSet {
[self willAccessValueForKey:@"units"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"units"];
-
+
[self didAccessValueForKey:@"units"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_GuestCard.h b/Source/Models/MachineModels/_GuestCard.h
index 8f96045..96ce827 100644
--- a/Source/Models/MachineModels/_GuestCard.h
+++ b/Source/Models/MachineModels/_GuestCard.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct GuestCardAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *applicationIds;
@@ -24,6 +25,7 @@ extern const struct GuestCardAttributes {
__unsafe_unretained NSString *interactionIds;
__unsafe_unretained NSString *interestedUnitIds;
__unsafe_unretained NSString *isChangedLocally;
+ __unsafe_unretained NSString *isLeadGuestCard;
__unsafe_unretained NSString *isTaxCreditEligible;
__unsafe_unretained NSString *isUnitReserved;
__unsafe_unretained NSString *isWalkIn;
@@ -76,6 +78,9 @@ extern const struct GuestCardRelationships {
__unsafe_unretained NSString *thePrimaryProspectiveTenant;
} GuestCardRelationships;
+extern const struct GuestCardFetchedProperties {
+} GuestCardFetchedProperties;
+
@class ApplicationInfo;
@class BedBath;
@class LeasingConsultant;
@@ -97,22 +102,55 @@ extern const struct GuestCardRelationships {
@class MarketingSource;
@class ProspectiveTenant;
-@class NSObject;
@class NSObject;
+
@class NSObject;
@class NSObject;
+
+
+
+
+
+
+
@class NSObject;
@class NSObject;
+@class NSObject;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@class NSObject;
+
@class NSObject;
+
+
+
+
+
+
+
+
+
+
@interface GuestCardID : NSManagedObjectID {}
@end
@@ -120,471 +158,707 @@ extern const struct GuestCardRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) GuestCardID* objectID;
+- (GuestCardID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id applicationIds;
+
//- (BOOL)validateApplicationIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* applicationUrl;
+
//- (BOOL)validateApplicationUrl:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* async;
-@property (atomic) BOOL asyncValue;
+
+@property BOOL asyncValue;
- (BOOL)asyncValue;
- (void)setAsyncValue:(BOOL)value_;
//- (BOOL)validateAsync:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id bedBathIds;
+
//- (BOOL)validateBedBathIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* commissionedLeasingConsultantId;
-@property (atomic) int64_t commissionedLeasingConsultantIdValue;
+
+@property int64_t commissionedLeasingConsultantIdValue;
- (int64_t)commissionedLeasingConsultantIdValue;
- (void)setCommissionedLeasingConsultantIdValue:(int64_t)value_;
//- (BOOL)validateCommissionedLeasingConsultantId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id communityGroupIds;
+
//- (BOOL)validateCommunityGroupIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* didAnswerFloorPreference;
-@property (atomic) BOOL didAnswerFloorPreferenceValue;
+
+@property BOOL didAnswerFloorPreferenceValue;
- (BOOL)didAnswerFloorPreferenceValue;
- (void)setDidAnswerFloorPreferenceValue:(BOOL)value_;
//- (BOOL)validateDidAnswerFloorPreference:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* didAnswerPets;
-@property (atomic) BOOL didAnswerPetsValue;
+
+@property BOOL didAnswerPetsValue;
- (BOOL)didAnswerPetsValue;
- (void)setDidAnswerPetsValue:(BOOL)value_;
//- (BOOL)validateDidAnswerPets:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* didLease;
-@property (atomic) BOOL didLeaseValue;
+
+@property BOOL didLeaseValue;
- (BOOL)didLeaseValue;
- (void)setDidLeaseValue:(BOOL)value_;
//- (BOOL)validateDidLease:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* didLeaseNotes;
+
//- (BOOL)validateDidLeaseNotes:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* didNotLeaseReasonId;
-@property (atomic) int64_t didNotLeaseReasonIdValue;
+
+@property int64_t didNotLeaseReasonIdValue;
- (int64_t)didNotLeaseReasonIdValue;
- (void)setDidNotLeaseReasonIdValue:(int64_t)value_;
//- (BOOL)validateDidNotLeaseReasonId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* earliestDate;
+
//- (BOOL)validateEarliestDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id featureIds;
+
//- (BOOL)validateFeatureIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* guestCardId;
-@property (atomic) int64_t guestCardIdValue;
+
+@property int64_t guestCardIdValue;
- (int64_t)guestCardIdValue;
- (void)setGuestCardIdValue:(int64_t)value_;
//- (BOOL)validateGuestCardId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id interactionIds;
+
//- (BOOL)validateInteractionIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id interestedUnitIds;
+
//- (BOOL)validateInterestedUnitIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isChangedLocally;
-@property (atomic) BOOL isChangedLocallyValue;
+
+@property BOOL isChangedLocallyValue;
- (BOOL)isChangedLocallyValue;
- (void)setIsChangedLocallyValue:(BOOL)value_;
//- (BOOL)validateIsChangedLocally:(id*)value_ error:(NSError**)error_;
+
+
+
+@property (nonatomic, strong) NSNumber* isLeadGuestCard;
+
+
+@property BOOL isLeadGuestCardValue;
+- (BOOL)isLeadGuestCardValue;
+- (void)setIsLeadGuestCardValue:(BOOL)value_;
+
+//- (BOOL)validateIsLeadGuestCard:(id*)value_ error:(NSError**)error_;
+
+
+
+
@property (nonatomic, strong) NSNumber* isTaxCreditEligible;
-@property (atomic) BOOL isTaxCreditEligibleValue;
+
+@property BOOL isTaxCreditEligibleValue;
- (BOOL)isTaxCreditEligibleValue;
- (void)setIsTaxCreditEligibleValue:(BOOL)value_;
//- (BOOL)validateIsTaxCreditEligible:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isUnitReserved;
-@property (atomic) int64_t isUnitReservedValue;
+
+@property int64_t isUnitReservedValue;
- (int64_t)isUnitReservedValue;
- (void)setIsUnitReservedValue:(int64_t)value_;
//- (BOOL)validateIsUnitReserved:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isWalkIn;
-@property (atomic) BOOL isWalkInValue;
+
+@property BOOL isWalkInValue;
- (BOOL)isWalkInValue;
- (void)setIsWalkInValue:(BOOL)value_;
//- (BOOL)validateIsWalkIn:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* latestDate;
+
//- (BOOL)validateLatestDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* leaseTermId;
-@property (atomic) int64_t leaseTermIdValue;
+
+@property int64_t leaseTermIdValue;
- (int64_t)leaseTermIdValue;
- (void)setLeaseTermIdValue:(int64_t)value_;
//- (BOOL)validateLeaseTermId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* leasingConsultantId;
-@property (atomic) int64_t leasingConsultantIdValue;
+
+@property int64_t leasingConsultantIdValue;
- (int64_t)leasingConsultantIdValue;
- (void)setLeasingConsultantIdValue:(int64_t)value_;
//- (BOOL)validateLeasingConsultantId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* maximumFloor;
-@property (atomic) int16_t maximumFloorValue;
+
+@property int16_t maximumFloorValue;
- (int16_t)maximumFloorValue;
- (void)setMaximumFloorValue:(int16_t)value_;
//- (BOOL)validateMaximumFloor:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* maximumPrice;
-@property (atomic) int16_t maximumPriceValue;
+
+@property int16_t maximumPriceValue;
- (int16_t)maximumPriceValue;
- (void)setMaximumPriceValue:(int16_t)value_;
//- (BOOL)validateMaximumPrice:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* minimumFloor;
-@property (atomic) int16_t minimumFloorValue;
+
+@property int16_t minimumFloorValue;
- (int16_t)minimumFloorValue;
- (void)setMinimumFloorValue:(int16_t)value_;
//- (BOOL)validateMinimumFloor:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* minimumPrice;
-@property (atomic) int16_t minimumPriceValue;
+
+@property int16_t minimumPriceValue;
- (int16_t)minimumPriceValue;
- (void)setMinimumPriceValue:(int16_t)value_;
//- (BOOL)validateMinimumPrice:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* notes;
+
//- (BOOL)validateNotes:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id preferenceIds;
+
//- (BOOL)validatePreferenceIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* primaryMarketingSourceId;
-@property (atomic) int64_t primaryMarketingSourceIdValue;
+
+@property int64_t primaryMarketingSourceIdValue;
- (int64_t)primaryMarketingSourceIdValue;
- (void)setPrimaryMarketingSourceIdValue:(int64_t)value_;
//- (BOOL)validatePrimaryMarketingSourceId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* prospectId;
-@property (atomic) int64_t prospectIdValue;
+
+@property int64_t prospectIdValue;
- (int64_t)prospectIdValue;
- (void)setProspectIdValue:(int64_t)value_;
//- (BOOL)validateProspectId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id prospectiveTenantIds;
+
//- (BOOL)validateProspectiveTenantIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* reasonNotLeasing;
+
//- (BOOL)validateReasonNotLeasing:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* reservedUnitId;
-@property (atomic) int64_t reservedUnitIdValue;
+
+@property int64_t reservedUnitIdValue;
- (int64_t)reservedUnitIdValue;
- (void)setReservedUnitIdValue:(int64_t)value_;
//- (BOOL)validateReservedUnitId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* secondaryMarketingSourceId;
-@property (atomic) int64_t secondaryMarketingSourceIdValue;
+
+@property int64_t secondaryMarketingSourceIdValue;
- (int64_t)secondaryMarketingSourceIdValue;
- (void)setSecondaryMarketingSourceIdValue:(int64_t)value_;
//- (BOOL)validateSecondaryMarketingSourceId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* sectionIdentifier;
+
//- (BOOL)validateSectionIdentifier:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* totalCats;
-@property (atomic) int16_t totalCatsValue;
+
+@property int16_t totalCatsValue;
- (int16_t)totalCatsValue;
- (void)setTotalCatsValue:(int16_t)value_;
//- (BOOL)validateTotalCats:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* totalDogs;
-@property (atomic) int16_t totalDogsValue;
+
+@property int16_t totalDogsValue;
- (int16_t)totalDogsValue;
- (void)setTotalDogsValue:(int16_t)value_;
//- (BOOL)validateTotalDogs:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* totalOtherAnimals;
-@property (atomic) int16_t totalOtherAnimalsValue;
+
+@property int16_t totalOtherAnimalsValue;
- (int16_t)totalOtherAnimalsValue;
- (void)setTotalOtherAnimalsValue:(int16_t)value_;
//- (BOOL)validateTotalOtherAnimals:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* totalTenants;
-@property (atomic) int16_t totalTenantsValue;
+
+@property int16_t totalTenantsValue;
- (int16_t)totalTenantsValue;
- (void)setTotalTenantsValue:(int16_t)value_;
//- (BOOL)validateTotalTenants:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* uuid;
+
//- (BOOL)validateUuid:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *applications;
+
+
+
+
+@property (nonatomic, strong) NSSet* applications;
- (NSMutableSet*)applicationsSet;
-@property (nonatomic, strong) NSSet *bedBaths;
+
+
+
+@property (nonatomic, strong) NSSet* bedBaths;
- (NSMutableSet*)bedBathsSet;
-@property (nonatomic, strong) LeasingConsultant *commissionedLeasingConsultant;
+
+
+
+@property (nonatomic, strong) LeasingConsultant* commissionedLeasingConsultant;
//- (BOOL)validateCommissionedLeasingConsultant:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *communityGroups;
+
+
+
+@property (nonatomic, strong) NSSet* communityGroups;
- (NSMutableSet*)communityGroupsSet;
-@property (nonatomic, strong) DidNotLeaseReason *didNotLeaseReason;
+
+
+
+@property (nonatomic, strong) DidNotLeaseReason* didNotLeaseReason;
//- (BOOL)validateDidNotLeaseReason:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *features;
+
+
+
+@property (nonatomic, strong) NSSet* features;
- (NSMutableSet*)featuresSet;
-@property (nonatomic, strong) NSSet *floorPlans;
+
+
+
+@property (nonatomic, strong) NSSet* floorPlans;
- (NSMutableSet*)floorPlansSet;
-@property (nonatomic, strong) NSSet *infographicImages;
+
+
+
+@property (nonatomic, strong) NSSet* infographicImages;
- (NSMutableSet*)infographicImagesSet;
-@property (nonatomic, strong) NSSet *interactions;
+
+
+
+@property (nonatomic, strong) NSSet* interactions;
- (NSMutableSet*)interactionsSet;
-@property (nonatomic, strong) NSSet *interestedUnits;
+
+
+
+@property (nonatomic, strong) NSSet* interestedUnits;
- (NSMutableSet*)interestedUnitsSet;
-@property (nonatomic, strong) LeaseTerm *leaseTerm;
+
+
+
+@property (nonatomic, strong) LeaseTerm* leaseTerm;
//- (BOOL)validateLeaseTerm:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) LeasingConsultant *leasingConsultant;
+
+
+
+@property (nonatomic, strong) LeasingConsultant* leasingConsultant;
//- (BOOL)validateLeasingConsultant:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *preferences;
+
+
+
+@property (nonatomic, strong) NSSet* preferences;
- (NSMutableSet*)preferencesSet;
-@property (nonatomic, strong) MarketingSource *primaryMarketingSource;
+
+
+
+@property (nonatomic, strong) MarketingSource* primaryMarketingSource;
//- (BOOL)validatePrimaryMarketingSource:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *prospectiveTenants;
+
+
+
+@property (nonatomic, strong) NSSet* prospectiveTenants;
- (NSMutableSet*)prospectiveTenantsSet;
-@property (nonatomic, strong) NSSet *quotesForGuestCard;
+
+
+
+@property (nonatomic, strong) NSSet* quotesForGuestCard;
- (NSMutableSet*)quotesForGuestCardSet;
-@property (nonatomic, strong) Unit *reservedUnit;
+
+
+
+@property (nonatomic, strong) Unit* reservedUnit;
//- (BOOL)validateReservedUnit:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) MarketingSource *secondaryMarketingSource;
+
+
+
+@property (nonatomic, strong) MarketingSource* secondaryMarketingSource;
//- (BOOL)validateSecondaryMarketingSource:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) ProspectiveTenant *thePrimaryProspectiveTenant;
+
+
+
+@property (nonatomic, strong) ProspectiveTenant* thePrimaryProspectiveTenant;
//- (BOOL)validateThePrimaryProspectiveTenant:(id*)value_ error:(NSError**)error_;
+
+
+
+
@end
-@interface _GuestCard (ApplicationsCoreDataGeneratedAccessors)
+@interface _GuestCard (CoreDataGeneratedAccessors)
+
- (void)addApplications:(NSSet*)value_;
- (void)removeApplications:(NSSet*)value_;
- (void)addApplicationsObject:(ApplicationInfo*)value_;
- (void)removeApplicationsObject:(ApplicationInfo*)value_;
-@end
-
-@interface _GuestCard (BedBathsCoreDataGeneratedAccessors)
- (void)addBedBaths:(NSSet*)value_;
- (void)removeBedBaths:(NSSet*)value_;
- (void)addBedBathsObject:(BedBath*)value_;
- (void)removeBedBathsObject:(BedBath*)value_;
-@end
-
-@interface _GuestCard (CommunityGroupsCoreDataGeneratedAccessors)
- (void)addCommunityGroups:(NSSet*)value_;
- (void)removeCommunityGroups:(NSSet*)value_;
- (void)addCommunityGroupsObject:(CommunityGroup*)value_;
- (void)removeCommunityGroupsObject:(CommunityGroup*)value_;
-@end
-
-@interface _GuestCard (FeaturesCoreDataGeneratedAccessors)
- (void)addFeatures:(NSSet*)value_;
- (void)removeFeatures:(NSSet*)value_;
- (void)addFeaturesObject:(Feature*)value_;
- (void)removeFeaturesObject:(Feature*)value_;
-@end
-
-@interface _GuestCard (FloorPlansCoreDataGeneratedAccessors)
- (void)addFloorPlans:(NSSet*)value_;
- (void)removeFloorPlans:(NSSet*)value_;
- (void)addFloorPlansObject:(FloorPlan*)value_;
- (void)removeFloorPlansObject:(FloorPlan*)value_;
-@end
-
-@interface _GuestCard (InfographicImagesCoreDataGeneratedAccessors)
- (void)addInfographicImages:(NSSet*)value_;
- (void)removeInfographicImages:(NSSet*)value_;
- (void)addInfographicImagesObject:(CommunityImage*)value_;
- (void)removeInfographicImagesObject:(CommunityImage*)value_;
-@end
-
-@interface _GuestCard (InteractionsCoreDataGeneratedAccessors)
- (void)addInteractions:(NSSet*)value_;
- (void)removeInteractions:(NSSet*)value_;
- (void)addInteractionsObject:(Interaction*)value_;
- (void)removeInteractionsObject:(Interaction*)value_;
-@end
-
-@interface _GuestCard (InterestedUnitsCoreDataGeneratedAccessors)
- (void)addInterestedUnits:(NSSet*)value_;
- (void)removeInterestedUnits:(NSSet*)value_;
- (void)addInterestedUnitsObject:(Unit*)value_;
- (void)removeInterestedUnitsObject:(Unit*)value_;
-@end
-
-@interface _GuestCard (PreferencesCoreDataGeneratedAccessors)
- (void)addPreferences:(NSSet*)value_;
- (void)removePreferences:(NSSet*)value_;
- (void)addPreferencesObject:(Feature*)value_;
- (void)removePreferencesObject:(Feature*)value_;
-@end
-
-@interface _GuestCard (ProspectiveTenantsCoreDataGeneratedAccessors)
- (void)addProspectiveTenants:(NSSet*)value_;
- (void)removeProspectiveTenants:(NSSet*)value_;
- (void)addProspectiveTenantsObject:(ProspectiveTenant*)value_;
- (void)removeProspectiveTenantsObject:(ProspectiveTenant*)value_;
-@end
-
-@interface _GuestCard (QuotesForGuestCardCoreDataGeneratedAccessors)
- (void)addQuotesForGuestCard:(NSSet*)value_;
- (void)removeQuotesForGuestCard:(NSSet*)value_;
- (void)addQuotesForGuestCardObject:(Quote*)value_;
@@ -594,289 +868,480 @@ extern const struct GuestCardRelationships {
@interface _GuestCard (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (id)primitiveApplicationIds;
- (void)setPrimitiveApplicationIds:(id)value;
+
+
+
- (NSString*)primitiveApplicationUrl;
- (void)setPrimitiveApplicationUrl:(NSString*)value;
+
+
+
- (NSNumber*)primitiveAsync;
- (void)setPrimitiveAsync:(NSNumber*)value;
- (BOOL)primitiveAsyncValue;
- (void)setPrimitiveAsyncValue:(BOOL)value_;
+
+
+
- (id)primitiveBedBathIds;
- (void)setPrimitiveBedBathIds:(id)value;
+
+
+
- (NSNumber*)primitiveCommissionedLeasingConsultantId;
- (void)setPrimitiveCommissionedLeasingConsultantId:(NSNumber*)value;
- (int64_t)primitiveCommissionedLeasingConsultantIdValue;
- (void)setPrimitiveCommissionedLeasingConsultantIdValue:(int64_t)value_;
+
+
+
- (id)primitiveCommunityGroupIds;
- (void)setPrimitiveCommunityGroupIds:(id)value;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveDidAnswerFloorPreference;
- (void)setPrimitiveDidAnswerFloorPreference:(NSNumber*)value;
- (BOOL)primitiveDidAnswerFloorPreferenceValue;
- (void)setPrimitiveDidAnswerFloorPreferenceValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveDidAnswerPets;
- (void)setPrimitiveDidAnswerPets:(NSNumber*)value;
- (BOOL)primitiveDidAnswerPetsValue;
- (void)setPrimitiveDidAnswerPetsValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveDidLease;
- (void)setPrimitiveDidLease:(NSNumber*)value;
- (BOOL)primitiveDidLeaseValue;
- (void)setPrimitiveDidLeaseValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveDidLeaseNotes;
- (void)setPrimitiveDidLeaseNotes:(NSString*)value;
+
+
+
- (NSNumber*)primitiveDidNotLeaseReasonId;
- (void)setPrimitiveDidNotLeaseReasonId:(NSNumber*)value;
- (int64_t)primitiveDidNotLeaseReasonIdValue;
- (void)setPrimitiveDidNotLeaseReasonIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveEarliestDate;
- (void)setPrimitiveEarliestDate:(NSDate*)value;
+
+
+
- (id)primitiveFeatureIds;
- (void)setPrimitiveFeatureIds:(id)value;
+
+
+
- (NSNumber*)primitiveGuestCardId;
- (void)setPrimitiveGuestCardId:(NSNumber*)value;
- (int64_t)primitiveGuestCardIdValue;
- (void)setPrimitiveGuestCardIdValue:(int64_t)value_;
+
+
+
- (id)primitiveInteractionIds;
- (void)setPrimitiveInteractionIds:(id)value;
+
+
+
- (id)primitiveInterestedUnitIds;
- (void)setPrimitiveInterestedUnitIds:(id)value;
+
+
+
- (NSNumber*)primitiveIsChangedLocally;
- (void)setPrimitiveIsChangedLocally:(NSNumber*)value;
- (BOOL)primitiveIsChangedLocallyValue;
- (void)setPrimitiveIsChangedLocallyValue:(BOOL)value_;
+
+
+
+- (NSNumber*)primitiveIsLeadGuestCard;
+- (void)setPrimitiveIsLeadGuestCard:(NSNumber*)value;
+
+- (BOOL)primitiveIsLeadGuestCardValue;
+- (void)setPrimitiveIsLeadGuestCardValue:(BOOL)value_;
+
+
+
+
- (NSNumber*)primitiveIsTaxCreditEligible;
- (void)setPrimitiveIsTaxCreditEligible:(NSNumber*)value;
- (BOOL)primitiveIsTaxCreditEligibleValue;
- (void)setPrimitiveIsTaxCreditEligibleValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsUnitReserved;
- (void)setPrimitiveIsUnitReserved:(NSNumber*)value;
- (int64_t)primitiveIsUnitReservedValue;
- (void)setPrimitiveIsUnitReservedValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveIsWalkIn;
- (void)setPrimitiveIsWalkIn:(NSNumber*)value;
- (BOOL)primitiveIsWalkInValue;
- (void)setPrimitiveIsWalkInValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLatestDate;
- (void)setPrimitiveLatestDate:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveLeaseTermId;
- (void)setPrimitiveLeaseTermId:(NSNumber*)value;
- (int64_t)primitiveLeaseTermIdValue;
- (void)setPrimitiveLeaseTermIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveLeasingConsultantId;
- (void)setPrimitiveLeasingConsultantId:(NSNumber*)value;
- (int64_t)primitiveLeasingConsultantIdValue;
- (void)setPrimitiveLeasingConsultantIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveMaximumFloor;
- (void)setPrimitiveMaximumFloor:(NSNumber*)value;
- (int16_t)primitiveMaximumFloorValue;
- (void)setPrimitiveMaximumFloorValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveMaximumPrice;
- (void)setPrimitiveMaximumPrice:(NSNumber*)value;
- (int16_t)primitiveMaximumPriceValue;
- (void)setPrimitiveMaximumPriceValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveMinimumFloor;
- (void)setPrimitiveMinimumFloor:(NSNumber*)value;
- (int16_t)primitiveMinimumFloorValue;
- (void)setPrimitiveMinimumFloorValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveMinimumPrice;
- (void)setPrimitiveMinimumPrice:(NSNumber*)value;
- (int16_t)primitiveMinimumPriceValue;
- (void)setPrimitiveMinimumPriceValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveNotes;
- (void)setPrimitiveNotes:(NSString*)value;
+
+
+
- (id)primitivePreferenceIds;
- (void)setPrimitivePreferenceIds:(id)value;
+
+
+
- (NSNumber*)primitivePrimaryMarketingSourceId;
- (void)setPrimitivePrimaryMarketingSourceId:(NSNumber*)value;
- (int64_t)primitivePrimaryMarketingSourceIdValue;
- (void)setPrimitivePrimaryMarketingSourceIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveProspectId;
- (void)setPrimitiveProspectId:(NSNumber*)value;
- (int64_t)primitiveProspectIdValue;
- (void)setPrimitiveProspectIdValue:(int64_t)value_;
+
+
+
- (id)primitiveProspectiveTenantIds;
- (void)setPrimitiveProspectiveTenantIds:(id)value;
+
+
+
- (NSString*)primitiveReasonNotLeasing;
- (void)setPrimitiveReasonNotLeasing:(NSString*)value;
+
+
+
- (NSNumber*)primitiveReservedUnitId;
- (void)setPrimitiveReservedUnitId:(NSNumber*)value;
- (int64_t)primitiveReservedUnitIdValue;
- (void)setPrimitiveReservedUnitIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveSecondaryMarketingSourceId;
- (void)setPrimitiveSecondaryMarketingSourceId:(NSNumber*)value;
- (int64_t)primitiveSecondaryMarketingSourceIdValue;
- (void)setPrimitiveSecondaryMarketingSourceIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveSectionIdentifier;
- (void)setPrimitiveSectionIdentifier:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveTotalCats;
- (void)setPrimitiveTotalCats:(NSNumber*)value;
- (int16_t)primitiveTotalCatsValue;
- (void)setPrimitiveTotalCatsValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveTotalDogs;
- (void)setPrimitiveTotalDogs:(NSNumber*)value;
- (int16_t)primitiveTotalDogsValue;
- (void)setPrimitiveTotalDogsValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveTotalOtherAnimals;
- (void)setPrimitiveTotalOtherAnimals:(NSNumber*)value;
- (int16_t)primitiveTotalOtherAnimalsValue;
- (void)setPrimitiveTotalOtherAnimalsValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveTotalTenants;
- (void)setPrimitiveTotalTenants:(NSNumber*)value;
- (int16_t)primitiveTotalTenantsValue;
- (void)setPrimitiveTotalTenantsValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveUuid;
- (void)setPrimitiveUuid:(NSString*)value;
+
+
+
+
- (NSMutableSet*)primitiveApplications;
- (void)setPrimitiveApplications:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveBedBaths;
- (void)setPrimitiveBedBaths:(NSMutableSet*)value;
+
+
- (LeasingConsultant*)primitiveCommissionedLeasingConsultant;
- (void)setPrimitiveCommissionedLeasingConsultant:(LeasingConsultant*)value;
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
+
- (NSMutableSet*)primitiveCommunityGroups;
- (void)setPrimitiveCommunityGroups:(NSMutableSet*)value;
+
+
- (DidNotLeaseReason*)primitiveDidNotLeaseReason;
- (void)setPrimitiveDidNotLeaseReason:(DidNotLeaseReason*)value;
+
+
- (NSMutableSet*)primitiveFeatures;
- (void)setPrimitiveFeatures:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveFloorPlans;
- (void)setPrimitiveFloorPlans:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveInfographicImages;
- (void)setPrimitiveInfographicImages:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveInteractions;
- (void)setPrimitiveInteractions:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveInterestedUnits;
- (void)setPrimitiveInterestedUnits:(NSMutableSet*)value;
+
+
- (LeaseTerm*)primitiveLeaseTerm;
- (void)setPrimitiveLeaseTerm:(LeaseTerm*)value;
+
+
- (LeasingConsultant*)primitiveLeasingConsultant;
- (void)setPrimitiveLeasingConsultant:(LeasingConsultant*)value;
+
+
- (NSMutableSet*)primitivePreferences;
- (void)setPrimitivePreferences:(NSMutableSet*)value;
+
+
- (MarketingSource*)primitivePrimaryMarketingSource;
- (void)setPrimitivePrimaryMarketingSource:(MarketingSource*)value;
+
+
- (NSMutableSet*)primitiveProspectiveTenants;
- (void)setPrimitiveProspectiveTenants:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveQuotesForGuestCard;
- (void)setPrimitiveQuotesForGuestCard:(NSMutableSet*)value;
+
+
- (Unit*)primitiveReservedUnit;
- (void)setPrimitiveReservedUnit:(Unit*)value;
+
+
- (MarketingSource*)primitiveSecondaryMarketingSource;
- (void)setPrimitiveSecondaryMarketingSource:(MarketingSource*)value;
+
+
- (ProspectiveTenant*)primitiveThePrimaryProspectiveTenant;
- (void)setPrimitiveThePrimaryProspectiveTenant:(ProspectiveTenant*)value;
+
@end
diff --git a/Source/Models/MachineModels/_GuestCard.m b/Source/Models/MachineModels/_GuestCard.m
index 43bc586..6ade0d5 100644
--- a/Source/Models/MachineModels/_GuestCard.m
+++ b/Source/Models/MachineModels/_GuestCard.m
@@ -24,6 +24,7 @@ const struct GuestCardAttributes GuestCardAttributes = {
.interactionIds = @"interactionIds",
.interestedUnitIds = @"interestedUnitIds",
.isChangedLocally = @"isChangedLocally",
+ .isLeadGuestCard = @"isLeadGuestCard",
.isTaxCreditEligible = @"isTaxCreditEligible",
.isUnitReserved = @"isUnitReserved",
.isWalkIn = @"isWalkIn",
@@ -76,6 +77,9 @@ const struct GuestCardRelationships GuestCardRelationships = {
.thePrimaryProspectiveTenant = @"thePrimaryProspectiveTenant",
};
+const struct GuestCardFetchedProperties GuestCardFetchedProperties = {
+};
+
@implementation GuestCardID
@end
@@ -99,155 +103,136 @@ const struct GuestCardRelationships GuestCardRelationships = {
return (GuestCardID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"asyncValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"async"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"commissionedLeasingConsultantIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"commissionedLeasingConsultantId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"didAnswerFloorPreferenceValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"didAnswerFloorPreference"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"didAnswerPetsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"didAnswerPets"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"didLeaseValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"didLease"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"didNotLeaseReasonIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"didNotLeaseReasonId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"guestCardIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"guestCardId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isChangedLocallyValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isChangedLocally"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
+ }
+ if ([key isEqualToString:@"isLeadGuestCardValue"]) {
+ NSSet *affectingKey = [NSSet setWithObject:@"isLeadGuestCard"];
+ keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
}
if ([key isEqualToString:@"isTaxCreditEligibleValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isTaxCreditEligible"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isUnitReservedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isUnitReserved"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isWalkInValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isWalkIn"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"leaseTermIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"leaseTermId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"leasingConsultantIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"leasingConsultantId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"maximumFloorValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"maximumFloor"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"maximumPriceValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"maximumPrice"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"minimumFloorValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"minimumFloor"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"minimumPriceValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"minimumPrice"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"primaryMarketingSourceIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"primaryMarketingSourceId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"prospectIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"prospectId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"reservedUnitIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"reservedUnitId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"secondaryMarketingSourceIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"secondaryMarketingSourceId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"totalCatsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"totalCats"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"totalDogsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"totalDogs"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"totalOtherAnimalsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"totalOtherAnimals"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"totalTenantsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"totalTenants"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -266,12 +251,28 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic applicationIds;
+
+
+
+
+
@dynamic applicationUrl;
+
+
+
+
+
@dynamic async;
+
+
- (BOOL)asyncValue {
NSNumber *result = [self async];
return [result boolValue];
@@ -290,10 +291,21 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveAsync:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic bedBathIds;
+
+
+
+
+
@dynamic commissionedLeasingConsultantId;
+
+
- (int64_t)commissionedLeasingConsultantIdValue {
NSNumber *result = [self commissionedLeasingConsultantId];
return [result longLongValue];
@@ -312,10 +324,21 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveCommissionedLeasingConsultantId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic communityGroupIds;
+
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -334,10 +357,21 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic didAnswerFloorPreference;
+
+
- (BOOL)didAnswerFloorPreferenceValue {
NSNumber *result = [self didAnswerFloorPreference];
return [result boolValue];
@@ -356,8 +390,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveDidAnswerFloorPreference:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic didAnswerPets;
+
+
- (BOOL)didAnswerPetsValue {
NSNumber *result = [self didAnswerPets];
return [result boolValue];
@@ -376,8 +416,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveDidAnswerPets:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic didLease;
+
+
- (BOOL)didLeaseValue {
NSNumber *result = [self didLease];
return [result boolValue];
@@ -396,10 +442,21 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveDidLease:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic didLeaseNotes;
+
+
+
+
+
@dynamic didNotLeaseReasonId;
+
+
- (int64_t)didNotLeaseReasonIdValue {
NSNumber *result = [self didNotLeaseReasonId];
return [result longLongValue];
@@ -418,12 +475,28 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveDidNotLeaseReasonId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic earliestDate;
+
+
+
+
+
@dynamic featureIds;
+
+
+
+
+
@dynamic guestCardId;
+
+
- (int64_t)guestCardIdValue {
NSNumber *result = [self guestCardId];
return [result longLongValue];
@@ -442,12 +515,28 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveGuestCardId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic interactionIds;
+
+
+
+
+
@dynamic interestedUnitIds;
+
+
+
+
+
@dynamic isChangedLocally;
+
+
- (BOOL)isChangedLocallyValue {
NSNumber *result = [self isChangedLocally];
return [result boolValue];
@@ -466,8 +555,40 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveIsChangedLocally:[NSNumber numberWithBool:value_]];
}
+
+
+
+
+@dynamic isLeadGuestCard;
+
+
+
+- (BOOL)isLeadGuestCardValue {
+ NSNumber *result = [self isLeadGuestCard];
+ return [result boolValue];
+}
+
+- (void)setIsLeadGuestCardValue:(BOOL)value_ {
+ [self setIsLeadGuestCard:[NSNumber numberWithBool:value_]];
+}
+
+- (BOOL)primitiveIsLeadGuestCardValue {
+ NSNumber *result = [self primitiveIsLeadGuestCard];
+ return [result boolValue];
+}
+
+- (void)setPrimitiveIsLeadGuestCardValue:(BOOL)value_ {
+ [self setPrimitiveIsLeadGuestCard:[NSNumber numberWithBool:value_]];
+}
+
+
+
+
+
@dynamic isTaxCreditEligible;
+
+
- (BOOL)isTaxCreditEligibleValue {
NSNumber *result = [self isTaxCreditEligible];
return [result boolValue];
@@ -486,8 +607,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveIsTaxCreditEligible:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isUnitReserved;
+
+
- (int64_t)isUnitReservedValue {
NSNumber *result = [self isUnitReserved];
return [result longLongValue];
@@ -506,8 +633,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveIsUnitReserved:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic isWalkIn;
+
+
- (BOOL)isWalkInValue {
NSNumber *result = [self isWalkIn];
return [result boolValue];
@@ -526,14 +659,35 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveIsWalkIn:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic latestDate;
+
+
+
+
+
@dynamic leaseTermId;
+
+
- (int64_t)leaseTermIdValue {
NSNumber *result = [self leaseTermId];
return [result longLongValue];
@@ -552,8 +706,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveLeaseTermId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic leasingConsultantId;
+
+
- (int64_t)leasingConsultantIdValue {
NSNumber *result = [self leasingConsultantId];
return [result longLongValue];
@@ -572,8 +732,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveLeasingConsultantId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic maximumFloor;
+
+
- (int16_t)maximumFloorValue {
NSNumber *result = [self maximumFloor];
return [result shortValue];
@@ -592,8 +758,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveMaximumFloor:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic maximumPrice;
+
+
- (int16_t)maximumPriceValue {
NSNumber *result = [self maximumPrice];
return [result shortValue];
@@ -612,8 +784,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveMaximumPrice:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic minimumFloor;
+
+
- (int16_t)minimumFloorValue {
NSNumber *result = [self minimumFloor];
return [result shortValue];
@@ -632,8 +810,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveMinimumFloor:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic minimumPrice;
+
+
- (int16_t)minimumPriceValue {
NSNumber *result = [self minimumPrice];
return [result shortValue];
@@ -652,12 +836,28 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveMinimumPrice:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic notes;
+
+
+
+
+
@dynamic preferenceIds;
+
+
+
+
+
@dynamic primaryMarketingSourceId;
+
+
- (int64_t)primaryMarketingSourceIdValue {
NSNumber *result = [self primaryMarketingSourceId];
return [result longLongValue];
@@ -676,8 +876,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitivePrimaryMarketingSourceId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic prospectId;
+
+
- (int64_t)prospectIdValue {
NSNumber *result = [self prospectId];
return [result longLongValue];
@@ -696,12 +902,28 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveProspectId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic prospectiveTenantIds;
+
+
+
+
+
@dynamic reasonNotLeasing;
+
+
+
+
+
@dynamic reservedUnitId;
+
+
- (int64_t)reservedUnitIdValue {
NSNumber *result = [self reservedUnitId];
return [result longLongValue];
@@ -720,8 +942,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveReservedUnitId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic secondaryMarketingSourceId;
+
+
- (int64_t)secondaryMarketingSourceIdValue {
NSNumber *result = [self secondaryMarketingSourceId];
return [result longLongValue];
@@ -740,10 +968,21 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveSecondaryMarketingSourceId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic sectionIdentifier;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -762,8 +1001,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic totalCats;
+
+
- (int16_t)totalCatsValue {
NSNumber *result = [self totalCats];
return [result shortValue];
@@ -782,8 +1027,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveTotalCats:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic totalDogs;
+
+
- (int16_t)totalDogsValue {
NSNumber *result = [self totalDogs];
return [result shortValue];
@@ -802,8 +1053,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveTotalDogs:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic totalOtherAnimals;
+
+
- (int16_t)totalOtherAnimalsValue {
NSNumber *result = [self totalOtherAnimals];
return [result shortValue];
@@ -822,8 +1079,14 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveTotalOtherAnimals:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic totalTenants;
+
+
- (int16_t)totalTenantsValue {
NSNumber *result = [self totalTenants];
return [result shortValue];
@@ -842,146 +1105,199 @@ const struct GuestCardRelationships GuestCardRelationships = {
[self setPrimitiveTotalTenants:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic uuid;
+
+
+
+
+
@dynamic applications;
+
- (NSMutableSet*)applicationsSet {
[self willAccessValueForKey:@"applications"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"applications"];
-
+
[self didAccessValueForKey:@"applications"];
return result;
}
+
@dynamic bedBaths;
+
- (NSMutableSet*)bedBathsSet {
[self willAccessValueForKey:@"bedBaths"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"bedBaths"];
-
+
[self didAccessValueForKey:@"bedBaths"];
return result;
}
+
@dynamic commissionedLeasingConsultant;
+
+
@dynamic community;
+
+
@dynamic communityGroups;
+
- (NSMutableSet*)communityGroupsSet {
[self willAccessValueForKey:@"communityGroups"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"communityGroups"];
-
+
[self didAccessValueForKey:@"communityGroups"];
return result;
}
+
@dynamic didNotLeaseReason;
+
+
@dynamic features;
+
- (NSMutableSet*)featuresSet {
[self willAccessValueForKey:@"features"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"features"];
-
+
[self didAccessValueForKey:@"features"];
return result;
}
+
@dynamic floorPlans;
+
- (NSMutableSet*)floorPlansSet {
[self willAccessValueForKey:@"floorPlans"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"floorPlans"];
-
+
[self didAccessValueForKey:@"floorPlans"];
return result;
}
+
@dynamic infographicImages;
+
- (NSMutableSet*)infographicImagesSet {
[self willAccessValueForKey:@"infographicImages"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"infographicImages"];
-
+
[self didAccessValueForKey:@"infographicImages"];
return result;
}
+
@dynamic interactions;
+
- (NSMutableSet*)interactionsSet {
[self willAccessValueForKey:@"interactions"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"interactions"];
-
+
[self didAccessValueForKey:@"interactions"];
return result;
}
+
@dynamic interestedUnits;
+
- (NSMutableSet*)interestedUnitsSet {
[self willAccessValueForKey:@"interestedUnits"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"interestedUnits"];
-
+
[self didAccessValueForKey:@"interestedUnits"];
return result;
}
+
@dynamic leaseTerm;
+
+
@dynamic leasingConsultant;
+
+
@dynamic preferences;
+
- (NSMutableSet*)preferencesSet {
[self willAccessValueForKey:@"preferences"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"preferences"];
-
+
[self didAccessValueForKey:@"preferences"];
return result;
}
+
@dynamic primaryMarketingSource;
+
+
@dynamic prospectiveTenants;
+
- (NSMutableSet*)prospectiveTenantsSet {
[self willAccessValueForKey:@"prospectiveTenants"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"prospectiveTenants"];
-
+
[self didAccessValueForKey:@"prospectiveTenants"];
return result;
}
+
@dynamic quotesForGuestCard;
+
- (NSMutableSet*)quotesForGuestCardSet {
[self willAccessValueForKey:@"quotesForGuestCard"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"quotesForGuestCard"];
-
+
[self didAccessValueForKey:@"quotesForGuestCard"];
return result;
}
+
@dynamic reservedUnit;
+
+
@dynamic secondaryMarketingSource;
+
+
@dynamic thePrimaryProspectiveTenant;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_Interaction.h b/Source/Models/MachineModels/_Interaction.h
index 5cb8922..a848a65 100644
--- a/Source/Models/MachineModels/_Interaction.h
+++ b/Source/Models/MachineModels/_Interaction.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct InteractionAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *completedById;
@@ -38,14 +39,40 @@ extern const struct InteractionRelationships {
__unsafe_unretained NSString *unitsShown;
} InteractionRelationships;
+extern const struct InteractionFetchedProperties {
+} InteractionFetchedProperties;
+
@class LeasingConsultant;
@class GuestCard;
@class InteractionResult;
@class LeasingConsultant;
@class Unit;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@class NSObject;
+
@interface InteractionID : NSManagedObjectID {}
@end
@@ -53,179 +80,296 @@ extern const struct InteractionRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) InteractionID* objectID;
+- (InteractionID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* completedById;
-@property (atomic) int64_t completedByIdValue;
+
+@property int64_t completedByIdValue;
- (int64_t)completedByIdValue;
- (void)setCompletedByIdValue:(int64_t)value_;
//- (BOOL)validateCompletedById:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* completedDate;
+
//- (BOOL)validateCompletedDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* didShow;
-@property (atomic) BOOL didShowValue;
+
+@property BOOL didShowValue;
- (BOOL)didShowValue;
- (void)setDidShowValue:(BOOL)value_;
//- (BOOL)validateDidShow:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* emailText;
+
//- (BOOL)validateEmailText:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* guestCardId;
-@property (atomic) int64_t guestCardIdValue;
+
+@property int64_t guestCardIdValue;
- (int64_t)guestCardIdValue;
- (void)setGuestCardIdValue:(int64_t)value_;
//- (BOOL)validateGuestCardId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* interactionId;
-@property (atomic) int64_t interactionIdValue;
+
+@property int64_t interactionIdValue;
- (int64_t)interactionIdValue;
- (void)setInteractionIdValue:(int64_t)value_;
//- (BOOL)validateInteractionId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* interactionResultId;
-@property (atomic) int32_t interactionResultIdValue;
+
+@property int32_t interactionResultIdValue;
- (int32_t)interactionResultIdValue;
- (void)setInteractionResultIdValue:(int32_t)value_;
//- (BOOL)validateInteractionResultId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isBrowsing;
-@property (atomic) BOOL isBrowsingValue;
+
+@property BOOL isBrowsingValue;
- (BOOL)isBrowsingValue;
- (void)setIsBrowsingValue:(BOOL)value_;
//- (BOOL)validateIsBrowsing:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isComplete;
-@property (atomic) BOOL isCompleteValue;
+
+@property BOOL isCompleteValue;
- (BOOL)isCompleteValue;
- (void)setIsCompleteValue:(BOOL)value_;
//- (BOOL)validateIsComplete:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isFirstInteraction;
-@property (atomic) BOOL isFirstInteractionValue;
+
+@property BOOL isFirstInteractionValue;
- (BOOL)isFirstInteractionValue;
- (void)setIsFirstInteractionValue:(BOOL)value_;
//- (BOOL)validateIsFirstInteraction:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isSmsReply;
-@property (atomic) BOOL isSmsReplyValue;
+
+@property BOOL isSmsReplyValue;
- (BOOL)isSmsReplyValue;
- (void)setIsSmsReplyValue:(BOOL)value_;
//- (BOOL)validateIsSmsReply:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* notes;
+
//- (BOOL)validateNotes:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* scheduledById;
-@property (atomic) int64_t scheduledByIdValue;
+
+@property int64_t scheduledByIdValue;
- (int64_t)scheduledByIdValue;
- (void)setScheduledByIdValue:(int64_t)value_;
//- (BOOL)validateScheduledById:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* scheduledDate;
+
//- (BOOL)validateScheduledDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* smsState;
-@property (atomic) int16_t smsStateValue;
+
+@property int16_t smsStateValue;
- (int16_t)smsStateValue;
- (void)setSmsStateValue:(int16_t)value_;
//- (BOOL)validateSmsState:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* smsText;
+
//- (BOOL)validateSmsText:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* type;
+
//- (BOOL)validateType:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id unitsShownIds;
+
//- (BOOL)validateUnitsShownIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* uuid;
+
//- (BOOL)validateUuid:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) LeasingConsultant *completedBy;
+
+
+
+
+@property (nonatomic, strong) LeasingConsultant* completedBy;
//- (BOOL)validateCompletedBy:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) GuestCard *guestCard;
+
+
+
+@property (nonatomic, strong) GuestCard* guestCard;
//- (BOOL)validateGuestCard:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) InteractionResult *interactionResult;
+
+
+
+@property (nonatomic, strong) InteractionResult* interactionResult;
//- (BOOL)validateInteractionResult:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) LeasingConsultant *scheduledBy;
+
+
+
+@property (nonatomic, strong) LeasingConsultant* scheduledBy;
//- (BOOL)validateScheduledBy:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *unitsShown;
+
+
+
+@property (nonatomic, strong) NSSet* unitsShown;
- (NSMutableSet*)unitsShownSet;
+
+
+
+
@end
-@interface _Interaction (UnitsShownCoreDataGeneratedAccessors)
+@interface _Interaction (CoreDataGeneratedAccessors)
+
- (void)addUnitsShown:(NSSet*)value_;
- (void)removeUnitsShown:(NSSet*)value_;
- (void)addUnitsShownObject:(Unit*)value_;
@@ -235,127 +379,213 @@ extern const struct InteractionRelationships {
@interface _Interaction (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveCompletedById;
- (void)setPrimitiveCompletedById:(NSNumber*)value;
- (int64_t)primitiveCompletedByIdValue;
- (void)setPrimitiveCompletedByIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveCompletedDate;
- (void)setPrimitiveCompletedDate:(NSDate*)value;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveDidShow;
- (void)setPrimitiveDidShow:(NSNumber*)value;
- (BOOL)primitiveDidShowValue;
- (void)setPrimitiveDidShowValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveEmailText;
- (void)setPrimitiveEmailText:(NSString*)value;
+
+
+
- (NSNumber*)primitiveGuestCardId;
- (void)setPrimitiveGuestCardId:(NSNumber*)value;
- (int64_t)primitiveGuestCardIdValue;
- (void)setPrimitiveGuestCardIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveInteractionId;
- (void)setPrimitiveInteractionId:(NSNumber*)value;
- (int64_t)primitiveInteractionIdValue;
- (void)setPrimitiveInteractionIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveInteractionResultId;
- (void)setPrimitiveInteractionResultId:(NSNumber*)value;
- (int32_t)primitiveInteractionResultIdValue;
- (void)setPrimitiveInteractionResultIdValue:(int32_t)value_;
+
+
+
- (NSNumber*)primitiveIsBrowsing;
- (void)setPrimitiveIsBrowsing:(NSNumber*)value;
- (BOOL)primitiveIsBrowsingValue;
- (void)setPrimitiveIsBrowsingValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsComplete;
- (void)setPrimitiveIsComplete:(NSNumber*)value;
- (BOOL)primitiveIsCompleteValue;
- (void)setPrimitiveIsCompleteValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsFirstInteraction;
- (void)setPrimitiveIsFirstInteraction:(NSNumber*)value;
- (BOOL)primitiveIsFirstInteractionValue;
- (void)setPrimitiveIsFirstInteractionValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsSmsReply;
- (void)setPrimitiveIsSmsReply:(NSNumber*)value;
- (BOOL)primitiveIsSmsReplyValue;
- (void)setPrimitiveIsSmsReplyValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSString*)primitiveNotes;
- (void)setPrimitiveNotes:(NSString*)value;
+
+
+
- (NSNumber*)primitiveScheduledById;
- (void)setPrimitiveScheduledById:(NSNumber*)value;
- (int64_t)primitiveScheduledByIdValue;
- (void)setPrimitiveScheduledByIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveScheduledDate;
- (void)setPrimitiveScheduledDate:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveSmsState;
- (void)setPrimitiveSmsState:(NSNumber*)value;
- (int16_t)primitiveSmsStateValue;
- (void)setPrimitiveSmsStateValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveSmsText;
- (void)setPrimitiveSmsText:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
+- (NSString*)primitiveType;
+- (void)setPrimitiveType:(NSString*)value;
+
+
+
+
- (id)primitiveUnitsShownIds;
- (void)setPrimitiveUnitsShownIds:(id)value;
+
+
+
- (NSString*)primitiveUuid;
- (void)setPrimitiveUuid:(NSString*)value;
+
+
+
+
- (LeasingConsultant*)primitiveCompletedBy;
- (void)setPrimitiveCompletedBy:(LeasingConsultant*)value;
+
+
- (GuestCard*)primitiveGuestCard;
- (void)setPrimitiveGuestCard:(GuestCard*)value;
+
+
- (InteractionResult*)primitiveInteractionResult;
- (void)setPrimitiveInteractionResult:(InteractionResult*)value;
+
+
- (LeasingConsultant*)primitiveScheduledBy;
- (void)setPrimitiveScheduledBy:(LeasingConsultant*)value;
+
+
- (NSMutableSet*)primitiveUnitsShown;
- (void)setPrimitiveUnitsShown:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_Interaction.m b/Source/Models/MachineModels/_Interaction.m
index e921775..4fc46f3 100644
--- a/Source/Models/MachineModels/_Interaction.m
+++ b/Source/Models/MachineModels/_Interaction.m
@@ -38,6 +38,9 @@ const struct InteractionRelationships InteractionRelationships = {
.unitsShown = @"unitsShown",
};
+const struct InteractionFetchedProperties InteractionFetchedProperties = {
+};
+
@implementation InteractionID
@end
@@ -61,80 +64,72 @@ const struct InteractionRelationships InteractionRelationships = {
return (InteractionID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"completedByIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"completedById"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"didShowValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"didShow"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"guestCardIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"guestCardId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"interactionIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"interactionId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"interactionResultIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"interactionResultId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isBrowsingValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isBrowsing"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isCompleteValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isComplete"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isFirstInteractionValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isFirstInteraction"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isSmsReplyValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isSmsReply"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"scheduledByIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"scheduledById"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"smsStateValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"smsState"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -153,8 +148,14 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic completedById;
+
+
- (int64_t)completedByIdValue {
NSNumber *result = [self completedById];
return [result longLongValue];
@@ -173,12 +174,28 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveCompletedById:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic completedDate;
+
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic didShow;
+
+
- (BOOL)didShowValue {
NSNumber *result = [self didShow];
return [result boolValue];
@@ -197,10 +214,21 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveDidShow:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic emailText;
+
+
+
+
+
@dynamic guestCardId;
+
+
- (int64_t)guestCardIdValue {
NSNumber *result = [self guestCardId];
return [result longLongValue];
@@ -219,8 +247,14 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveGuestCardId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic interactionId;
+
+
- (int64_t)interactionIdValue {
NSNumber *result = [self interactionId];
return [result longLongValue];
@@ -239,8 +273,14 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveInteractionId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic interactionResultId;
+
+
- (int32_t)interactionResultIdValue {
NSNumber *result = [self interactionResultId];
return [result intValue];
@@ -259,8 +299,14 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveInteractionResultId:[NSNumber numberWithInt:value_]];
}
+
+
+
+
@dynamic isBrowsing;
+
+
- (BOOL)isBrowsingValue {
NSNumber *result = [self isBrowsing];
return [result boolValue];
@@ -279,8 +325,14 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveIsBrowsing:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isComplete;
+
+
- (BOOL)isCompleteValue {
NSNumber *result = [self isComplete];
return [result boolValue];
@@ -299,8 +351,14 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveIsComplete:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isFirstInteraction;
+
+
- (BOOL)isFirstInteractionValue {
NSNumber *result = [self isFirstInteraction];
return [result boolValue];
@@ -319,8 +377,14 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveIsFirstInteraction:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isSmsReply;
+
+
- (BOOL)isSmsReplyValue {
NSNumber *result = [self isSmsReply];
return [result boolValue];
@@ -339,14 +403,35 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveIsSmsReply:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic notes;
+
+
+
+
+
@dynamic scheduledById;
+
+
- (int64_t)scheduledByIdValue {
NSNumber *result = [self scheduledById];
return [result longLongValue];
@@ -365,10 +450,21 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveScheduledById:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic scheduledDate;
+
+
+
+
+
@dynamic smsState;
+
+
- (int16_t)smsStateValue {
NSNumber *result = [self smsState];
return [result shortValue];
@@ -387,10 +483,21 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveSmsState:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic smsText;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -409,30 +516,63 @@ const struct InteractionRelationships InteractionRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic type;
+
+
+
+
+
@dynamic unitsShownIds;
+
+
+
+
+
@dynamic uuid;
+
+
+
+
+
@dynamic completedBy;
+
+
@dynamic guestCard;
+
+
@dynamic interactionResult;
+
+
@dynamic scheduledBy;
+
+
@dynamic unitsShown;
+
- (NSMutableSet*)unitsShownSet {
[self willAccessValueForKey:@"unitsShown"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"unitsShown"];
-
+
[self didAccessValueForKey:@"unitsShown"];
return result;
}
+
+
-@end
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_InteractionResult.h b/Source/Models/MachineModels/_InteractionResult.h
index 556c1ce..99fa7ac 100644
--- a/Source/Models/MachineModels/_InteractionResult.h
+++ b/Source/Models/MachineModels/_InteractionResult.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct InteractionResultAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *communityId;
@@ -18,9 +19,20 @@ extern const struct InteractionResultRelationships {
__unsafe_unretained NSString *interactionsWithInteractionResult;
} InteractionResultRelationships;
+extern const struct InteractionResultFetchedProperties {
+} InteractionResultFetchedProperties;
+
@class Community;
@class Interaction;
+
+
+
+
+
+
+
+
@interface InteractionResultID : NSManagedObjectID {}
@end
@@ -28,63 +40,103 @@ extern const struct InteractionResultRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) InteractionResultID* objectID;
+- (InteractionResultID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int32_t communityIdValue;
+
+@property int32_t communityIdValue;
- (int32_t)communityIdValue;
- (void)setCommunityIdValue:(int32_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* interactionResultId;
-@property (atomic) int32_t interactionResultIdValue;
+
+@property int32_t interactionResultIdValue;
- (int32_t)interactionResultIdValue;
- (void)setInteractionResultIdValue:(int32_t)value_;
//- (BOOL)validateInteractionResultId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* updated;
+
//- (BOOL)validateUpdated:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *interactionsWithInteractionResult;
+
+
+
+@property (nonatomic, strong) NSSet* interactionsWithInteractionResult;
- (NSMutableSet*)interactionsWithInteractionResultSet;
+
+
+
+
@end
-@interface _InteractionResult (InteractionsWithInteractionResultCoreDataGeneratedAccessors)
+@interface _InteractionResult (CoreDataGeneratedAccessors)
+
- (void)addInteractionsWithInteractionResult:(NSSet*)value_;
- (void)removeInteractionsWithInteractionResult:(NSSet*)value_;
- (void)addInteractionsWithInteractionResultObject:(Interaction*)value_;
@@ -94,43 +146,69 @@ extern const struct InteractionResultRelationships {
@interface _InteractionResult (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int32_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int32_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveInteractionResultId;
- (void)setPrimitiveInteractionResultId:(NSNumber*)value;
- (int32_t)primitiveInteractionResultIdValue;
- (void)setPrimitiveInteractionResultIdValue:(int32_t)value_;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveUpdated;
- (void)setPrimitiveUpdated:(NSDate*)value;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
+
- (NSMutableSet*)primitiveInteractionsWithInteractionResult;
- (void)setPrimitiveInteractionsWithInteractionResult:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_InteractionResult.m b/Source/Models/MachineModels/_InteractionResult.m
index f7ed386..a739eec 100644
--- a/Source/Models/MachineModels/_InteractionResult.m
+++ b/Source/Models/MachineModels/_InteractionResult.m
@@ -18,6 +18,9 @@ const struct InteractionResultRelationships InteractionResultRelationships = {
.interactionsWithInteractionResult = @"interactionsWithInteractionResult",
};
+const struct InteractionResultFetchedProperties InteractionResultFetchedProperties = {
+};
+
@implementation InteractionResultID
@end
@@ -41,35 +44,36 @@ const struct InteractionResultRelationships InteractionResultRelationships = {
return (InteractionResultID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"interactionResultIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"interactionResultId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -88,8 +92,14 @@ const struct InteractionResultRelationships InteractionResultRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic communityId;
+
+
- (int32_t)communityIdValue {
NSNumber *result = [self communityId];
return [result intValue];
@@ -108,10 +118,21 @@ const struct InteractionResultRelationships InteractionResultRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithInt:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic interactionResultId;
+
+
- (int32_t)interactionResultIdValue {
NSNumber *result = [self interactionResultId];
return [result intValue];
@@ -130,10 +151,21 @@ const struct InteractionResultRelationships InteractionResultRelationships = {
[self setPrimitiveInteractionResultId:[NSNumber numberWithInt:value_]];
}
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -152,20 +184,37 @@ const struct InteractionResultRelationships InteractionResultRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic updated;
+
+
+
+
+
@dynamic community;
+
+
@dynamic interactionsWithInteractionResult;
+
- (NSMutableSet*)interactionsWithInteractionResultSet {
[self willAccessValueForKey:@"interactionsWithInteractionResult"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"interactionsWithInteractionResult"];
-
+
[self didAccessValueForKey:@"interactionsWithInteractionResult"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_LeaseTerm.h b/Source/Models/MachineModels/_LeaseTerm.h
index 6309183..177b386 100644
--- a/Source/Models/MachineModels/_LeaseTerm.h
+++ b/Source/Models/MachineModels/_LeaseTerm.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct LeaseTermAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *communityId;
@@ -24,11 +25,26 @@ extern const struct LeaseTermRelationships {
__unsafe_unretained NSString *unitPricingEntries;
} LeaseTermRelationships;
+extern const struct LeaseTermFetchedProperties {
+} LeaseTermFetchedProperties;
+
@class Community;
@class GuestCard;
@class Quote;
@class UnitPricingEntry;
+
+
+
+
+
+
+
+
+
+
+
+
@interface LeaseTermID : NSManagedObjectID {}
@end
@@ -36,115 +52,171 @@ extern const struct LeaseTermRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) LeaseTermID* objectID;
+- (LeaseTermID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isEnabled;
-@property (atomic) BOOL isEnabledValue;
+
+@property BOOL isEnabledValue;
- (BOOL)isEnabledValue;
- (void)setIsEnabledValue:(BOOL)value_;
//- (BOOL)validateIsEnabled:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* leaseTermId;
-@property (atomic) int64_t leaseTermIdValue;
+
+@property int64_t leaseTermIdValue;
- (int64_t)leaseTermIdValue;
- (void)setLeaseTermIdValue:(int64_t)value_;
//- (BOOL)validateLeaseTermId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* length;
-@property (atomic) int16_t lengthValue;
+
+@property int16_t lengthValue;
- (int16_t)lengthValue;
- (void)setLengthValue:(int16_t)value_;
//- (BOOL)validateLength:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* premium;
-@property (atomic) double premiumValue;
+
+@property double premiumValue;
- (double)premiumValue;
- (void)setPremiumValue:(double)value_;
//- (BOOL)validatePremium:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *guestCardsForLeaseTerm;
+
+
+
+@property (nonatomic, strong) NSSet* guestCardsForLeaseTerm;
- (NSMutableSet*)guestCardsForLeaseTermSet;
-@property (nonatomic, strong) NSSet *quotesWithLeaseTerm;
+
+
+
+@property (nonatomic, strong) NSSet* quotesWithLeaseTerm;
- (NSMutableSet*)quotesWithLeaseTermSet;
-@property (nonatomic, strong) NSSet *unitPricingEntries;
+
+
+
+@property (nonatomic, strong) NSSet* unitPricingEntries;
- (NSMutableSet*)unitPricingEntriesSet;
+
+
+
+
@end
-@interface _LeaseTerm (GuestCardsForLeaseTermCoreDataGeneratedAccessors)
+@interface _LeaseTerm (CoreDataGeneratedAccessors)
+
- (void)addGuestCardsForLeaseTerm:(NSSet*)value_;
- (void)removeGuestCardsForLeaseTerm:(NSSet*)value_;
- (void)addGuestCardsForLeaseTermObject:(GuestCard*)value_;
- (void)removeGuestCardsForLeaseTermObject:(GuestCard*)value_;
-@end
-
-@interface _LeaseTerm (QuotesWithLeaseTermCoreDataGeneratedAccessors)
- (void)addQuotesWithLeaseTerm:(NSSet*)value_;
- (void)removeQuotesWithLeaseTerm:(NSSet*)value_;
- (void)addQuotesWithLeaseTermObject:(Quote*)value_;
- (void)removeQuotesWithLeaseTermObject:(Quote*)value_;
-@end
-
-@interface _LeaseTerm (UnitPricingEntriesCoreDataGeneratedAccessors)
- (void)addUnitPricingEntries:(NSSet*)value_;
- (void)removeUnitPricingEntries:(NSSet*)value_;
- (void)addUnitPricingEntriesObject:(UnitPricingEntry*)value_;
@@ -154,70 +226,112 @@ extern const struct LeaseTermRelationships {
@interface _LeaseTerm (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveIsEnabled;
- (void)setPrimitiveIsEnabled:(NSNumber*)value;
- (BOOL)primitiveIsEnabledValue;
- (void)setPrimitiveIsEnabledValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveLeaseTermId;
- (void)setPrimitiveLeaseTermId:(NSNumber*)value;
- (int64_t)primitiveLeaseTermIdValue;
- (void)setPrimitiveLeaseTermIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveLength;
- (void)setPrimitiveLength:(NSNumber*)value;
- (int16_t)primitiveLengthValue;
- (void)setPrimitiveLengthValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSNumber*)primitivePremium;
- (void)setPrimitivePremium:(NSNumber*)value;
- (double)primitivePremiumValue;
- (void)setPrimitivePremiumValue:(double)value_;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
+
- (NSMutableSet*)primitiveGuestCardsForLeaseTerm;
- (void)setPrimitiveGuestCardsForLeaseTerm:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveQuotesWithLeaseTerm;
- (void)setPrimitiveQuotesWithLeaseTerm:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveUnitPricingEntries;
- (void)setPrimitiveUnitPricingEntries:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_LeaseTerm.m b/Source/Models/MachineModels/_LeaseTerm.m
index 42004be..c527dd8 100644
--- a/Source/Models/MachineModels/_LeaseTerm.m
+++ b/Source/Models/MachineModels/_LeaseTerm.m
@@ -24,6 +24,9 @@ const struct LeaseTermRelationships LeaseTermRelationships = {
.unitPricingEntries = @"unitPricingEntries",
};
+const struct LeaseTermFetchedProperties LeaseTermFetchedProperties = {
+};
+
@implementation LeaseTermID
@end
@@ -47,50 +50,48 @@ const struct LeaseTermRelationships LeaseTermRelationships = {
return (LeaseTermID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isEnabledValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isEnabled"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"leaseTermIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"leaseTermId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"lengthValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"length"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"premiumValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"premium"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -109,8 +110,14 @@ const struct LeaseTermRelationships LeaseTermRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -129,10 +136,21 @@ const struct LeaseTermRelationships LeaseTermRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic isEnabled;
+
+
- (BOOL)isEnabledValue {
NSNumber *result = [self isEnabled];
return [result boolValue];
@@ -151,12 +169,28 @@ const struct LeaseTermRelationships LeaseTermRelationships = {
[self setPrimitiveIsEnabled:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic leaseTermId;
+
+
- (int64_t)leaseTermIdValue {
NSNumber *result = [self leaseTermId];
return [result longLongValue];
@@ -175,8 +209,14 @@ const struct LeaseTermRelationships LeaseTermRelationships = {
[self setPrimitiveLeaseTermId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic length;
+
+
- (int16_t)lengthValue {
NSNumber *result = [self length];
return [result shortValue];
@@ -195,10 +235,21 @@ const struct LeaseTermRelationships LeaseTermRelationships = {
[self setPrimitiveLength:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic premium;
+
+
- (double)premiumValue {
NSNumber *result = [self premium];
return [result doubleValue];
@@ -217,8 +268,14 @@ const struct LeaseTermRelationships LeaseTermRelationships = {
[self setPrimitivePremium:[NSNumber numberWithDouble:value_]];
}
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -237,40 +294,56 @@ const struct LeaseTermRelationships LeaseTermRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic community;
+
+
@dynamic guestCardsForLeaseTerm;
+
- (NSMutableSet*)guestCardsForLeaseTermSet {
[self willAccessValueForKey:@"guestCardsForLeaseTerm"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardsForLeaseTerm"];
-
+
[self didAccessValueForKey:@"guestCardsForLeaseTerm"];
return result;
}
+
@dynamic quotesWithLeaseTerm;
+
- (NSMutableSet*)quotesWithLeaseTermSet {
[self willAccessValueForKey:@"quotesWithLeaseTerm"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"quotesWithLeaseTerm"];
-
+
[self didAccessValueForKey:@"quotesWithLeaseTerm"];
return result;
}
+
@dynamic unitPricingEntries;
+
- (NSMutableSet*)unitPricingEntriesSet {
[self willAccessValueForKey:@"unitPricingEntries"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"unitPricingEntries"];
-
+
[self didAccessValueForKey:@"unitPricingEntries"];
return result;
}
+
-@end
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_LeasingConsultant.h b/Source/Models/MachineModels/_LeasingConsultant.h
index be2e248..2289d17 100644
--- a/Source/Models/MachineModels/_LeasingConsultant.h
+++ b/Source/Models/MachineModels/_LeasingConsultant.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct LeasingConsultantAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *communityId;
@@ -28,11 +29,30 @@ extern const struct LeasingConsultantRelationships {
__unsafe_unretained NSString *scheduledInteractions;
} LeasingConsultantRelationships;
+extern const struct LeasingConsultantFetchedProperties {
+} LeasingConsultantFetchedProperties;
+
@class Interaction;
@class GuestCard;
@class GuestCard;
@class Interaction;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@interface LeasingConsultantID : NSManagedObjectID {}
@end
@@ -40,143 +60,212 @@ extern const struct LeasingConsultantRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) LeasingConsultantID* objectID;
+- (LeasingConsultantID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isHouse;
-@property (atomic) BOOL isHouseValue;
+
+@property BOOL isHouseValue;
- (BOOL)isHouseValue;
- (void)setIsHouseValue:(BOOL)value_;
//- (BOOL)validateIsHouse:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* leasingConsultantId;
-@property (atomic) int64_t leasingConsultantIdValue;
+
+@property int64_t leasingConsultantIdValue;
- (int64_t)leasingConsultantIdValue;
- (void)setLeasingConsultantIdValue:(int64_t)value_;
//- (BOOL)validateLeasingConsultantId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* password;
+
//- (BOOL)validatePassword:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* propertyCode;
+
//- (BOOL)validatePropertyCode:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* propertyId;
-@property (atomic) int64_t propertyIdValue;
+
+@property int64_t propertyIdValue;
- (int64_t)propertyIdValue;
- (void)setPropertyIdValue:(int64_t)value_;
//- (BOOL)validatePropertyId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* propertyManager;
-@property (atomic) int64_t propertyManagerValue;
+
+@property int64_t propertyManagerValue;
- (int64_t)propertyManagerValue;
- (void)setPropertyManagerValue:(int64_t)value_;
//- (BOOL)validatePropertyManager:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* thirdPartyPrimaryKey;
-@property (atomic) int64_t thirdPartyPrimaryKeyValue;
+
+@property int64_t thirdPartyPrimaryKeyValue;
- (int64_t)thirdPartyPrimaryKeyValue;
- (void)setThirdPartyPrimaryKeyValue:(int64_t)value_;
//- (BOOL)validateThirdPartyPrimaryKey:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* username;
+
//- (BOOL)validateUsername:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *completedInteractions;
+
+
+
+
+@property (nonatomic, strong) NSSet* completedInteractions;
- (NSMutableSet*)completedInteractionsSet;
-@property (nonatomic, strong) NSSet *guestCardsCommissioned;
+
+
+
+@property (nonatomic, strong) NSSet* guestCardsCommissioned;
- (NSMutableSet*)guestCardsCommissionedSet;
-@property (nonatomic, strong) NSSet *guestCardsForLeasingConsultant;
+
+
+
+@property (nonatomic, strong) NSSet* guestCardsForLeasingConsultant;
- (NSMutableSet*)guestCardsForLeasingConsultantSet;
-@property (nonatomic, strong) NSSet *scheduledInteractions;
+
+
+
+@property (nonatomic, strong) NSSet* scheduledInteractions;
- (NSMutableSet*)scheduledInteractionsSet;
+
+
+
+
@end
-@interface _LeasingConsultant (CompletedInteractionsCoreDataGeneratedAccessors)
+@interface _LeasingConsultant (CoreDataGeneratedAccessors)
+
- (void)addCompletedInteractions:(NSSet*)value_;
- (void)removeCompletedInteractions:(NSSet*)value_;
- (void)addCompletedInteractionsObject:(Interaction*)value_;
- (void)removeCompletedInteractionsObject:(Interaction*)value_;
-@end
-
-@interface _LeasingConsultant (GuestCardsCommissionedCoreDataGeneratedAccessors)
- (void)addGuestCardsCommissioned:(NSSet*)value_;
- (void)removeGuestCardsCommissioned:(NSSet*)value_;
- (void)addGuestCardsCommissionedObject:(GuestCard*)value_;
- (void)removeGuestCardsCommissionedObject:(GuestCard*)value_;
-@end
-
-@interface _LeasingConsultant (GuestCardsForLeasingConsultantCoreDataGeneratedAccessors)
- (void)addGuestCardsForLeasingConsultant:(NSSet*)value_;
- (void)removeGuestCardsForLeasingConsultant:(NSSet*)value_;
- (void)addGuestCardsForLeasingConsultantObject:(GuestCard*)value_;
- (void)removeGuestCardsForLeasingConsultantObject:(GuestCard*)value_;
-@end
-
-@interface _LeasingConsultant (ScheduledInteractionsCoreDataGeneratedAccessors)
- (void)addScheduledInteractions:(NSSet*)value_;
- (void)removeScheduledInteractions:(NSSet*)value_;
- (void)addScheduledInteractionsObject:(Interaction*)value_;
@@ -186,85 +275,139 @@ extern const struct LeasingConsultantRelationships {
@interface _LeasingConsultant (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveIsHouse;
- (void)setPrimitiveIsHouse:(NSNumber*)value;
- (BOOL)primitiveIsHouseValue;
- (void)setPrimitiveIsHouseValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveLeasingConsultantId;
- (void)setPrimitiveLeasingConsultantId:(NSNumber*)value;
- (int64_t)primitiveLeasingConsultantIdValue;
- (void)setPrimitiveLeasingConsultantIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSString*)primitivePassword;
- (void)setPrimitivePassword:(NSString*)value;
+
+
+
- (NSString*)primitivePropertyCode;
- (void)setPrimitivePropertyCode:(NSString*)value;
+
+
+
- (NSNumber*)primitivePropertyId;
- (void)setPrimitivePropertyId:(NSNumber*)value;
- (int64_t)primitivePropertyIdValue;
- (void)setPrimitivePropertyIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitivePropertyManager;
- (void)setPrimitivePropertyManager:(NSNumber*)value;
- (int64_t)primitivePropertyManagerValue;
- (void)setPrimitivePropertyManagerValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveThirdPartyPrimaryKey;
- (void)setPrimitiveThirdPartyPrimaryKey:(NSNumber*)value;
- (int64_t)primitiveThirdPartyPrimaryKeyValue;
- (void)setPrimitiveThirdPartyPrimaryKeyValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveUsername;
- (void)setPrimitiveUsername:(NSString*)value;
+
+
+
+
- (NSMutableSet*)primitiveCompletedInteractions;
- (void)setPrimitiveCompletedInteractions:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveGuestCardsCommissioned;
- (void)setPrimitiveGuestCardsCommissioned:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveGuestCardsForLeasingConsultant;
- (void)setPrimitiveGuestCardsForLeasingConsultant:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveScheduledInteractions;
- (void)setPrimitiveScheduledInteractions:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_LeasingConsultant.m b/Source/Models/MachineModels/_LeasingConsultant.m
index e21e159..92adc16 100644
--- a/Source/Models/MachineModels/_LeasingConsultant.m
+++ b/Source/Models/MachineModels/_LeasingConsultant.m
@@ -28,6 +28,9 @@ const struct LeasingConsultantRelationships LeasingConsultantRelationships = {
.scheduledInteractions = @"scheduledInteractions",
};
+const struct LeasingConsultantFetchedProperties LeasingConsultantFetchedProperties = {
+};
+
@implementation LeasingConsultantID
@end
@@ -51,55 +54,52 @@ const struct LeasingConsultantRelationships LeasingConsultantRelationships = {
return (LeasingConsultantID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isHouseValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isHouse"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"leasingConsultantIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"leasingConsultantId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"propertyIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"propertyId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"propertyManagerValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"propertyManager"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"thirdPartyPrimaryKeyValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"thirdPartyPrimaryKey"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -118,8 +118,14 @@ const struct LeasingConsultantRelationships LeasingConsultantRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -138,10 +144,21 @@ const struct LeasingConsultantRelationships LeasingConsultantRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic isHouse;
+
+
- (BOOL)isHouseValue {
NSNumber *result = [self isHouse];
return [result boolValue];
@@ -160,12 +177,28 @@ const struct LeasingConsultantRelationships LeasingConsultantRelationships = {
[self setPrimitiveIsHouse:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic leasingConsultantId;
+
+
- (int64_t)leasingConsultantIdValue {
NSNumber *result = [self leasingConsultantId];
return [result longLongValue];
@@ -184,14 +217,35 @@ const struct LeasingConsultantRelationships LeasingConsultantRelationships = {
[self setPrimitiveLeasingConsultantId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic password;
+
+
+
+
+
@dynamic propertyCode;
+
+
+
+
+
@dynamic propertyId;
+
+
- (int64_t)propertyIdValue {
NSNumber *result = [self propertyId];
return [result longLongValue];
@@ -210,8 +264,14 @@ const struct LeasingConsultantRelationships LeasingConsultantRelationships = {
[self setPrimitivePropertyId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic propertyManager;
+
+
- (int64_t)propertyManagerValue {
NSNumber *result = [self propertyManager];
return [result longLongValue];
@@ -230,8 +290,14 @@ const struct LeasingConsultantRelationships LeasingConsultantRelationships = {
[self setPrimitivePropertyManager:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -250,8 +316,14 @@ const struct LeasingConsultantRelationships LeasingConsultantRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic thirdPartyPrimaryKey;
+
+
- (int64_t)thirdPartyPrimaryKeyValue {
NSNumber *result = [self thirdPartyPrimaryKey];
return [result longLongValue];
@@ -270,51 +342,72 @@ const struct LeasingConsultantRelationships LeasingConsultantRelationships = {
[self setPrimitiveThirdPartyPrimaryKey:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic username;
+
+
+
+
+
@dynamic completedInteractions;
+
- (NSMutableSet*)completedInteractionsSet {
[self willAccessValueForKey:@"completedInteractions"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"completedInteractions"];
-
+
[self didAccessValueForKey:@"completedInteractions"];
return result;
}
+
@dynamic guestCardsCommissioned;
+
- (NSMutableSet*)guestCardsCommissionedSet {
[self willAccessValueForKey:@"guestCardsCommissioned"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardsCommissioned"];
-
+
[self didAccessValueForKey:@"guestCardsCommissioned"];
return result;
}
+
@dynamic guestCardsForLeasingConsultant;
+
- (NSMutableSet*)guestCardsForLeasingConsultantSet {
[self willAccessValueForKey:@"guestCardsForLeasingConsultant"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardsForLeasingConsultant"];
-
+
[self didAccessValueForKey:@"guestCardsForLeasingConsultant"];
return result;
}
+
@dynamic scheduledInteractions;
+
- (NSMutableSet*)scheduledInteractionsSet {
[self willAccessValueForKey:@"scheduledInteractions"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"scheduledInteractions"];
-
+
[self didAccessValueForKey:@"scheduledInteractions"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_MarketingSource.h b/Source/Models/MachineModels/_MarketingSource.h
index 81e376d..ec6b4d5 100644
--- a/Source/Models/MachineModels/_MarketingSource.h
+++ b/Source/Models/MachineModels/_MarketingSource.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct MarketingSourceAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *category;
@@ -21,10 +22,23 @@ extern const struct MarketingSourceRelationships {
__unsafe_unretained NSString *guestCardsAsSecondaryMarketingSource;
} MarketingSourceRelationships;
+extern const struct MarketingSourceFetchedProperties {
+} MarketingSourceFetchedProperties;
+
@class Community;
@class GuestCard;
@class GuestCard;
+
+
+
+
+
+
+
+
+
+
@interface MarketingSourceID : NSManagedObjectID {}
@end
@@ -32,83 +46,131 @@ extern const struct MarketingSourceRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) MarketingSourceID* objectID;
+- (MarketingSourceID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* category;
+
//- (BOOL)validateCategory:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* categorySortOrder;
-@property (atomic) int16_t categorySortOrderValue;
+
+@property int16_t categorySortOrderValue;
- (int16_t)categorySortOrderValue;
- (void)setCategorySortOrderValue:(int16_t)value_;
//- (BOOL)validateCategorySortOrder:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* marketingSourceId;
-@property (atomic) int64_t marketingSourceIdValue;
+
+@property int64_t marketingSourceIdValue;
- (int64_t)marketingSourceIdValue;
- (void)setMarketingSourceIdValue:(int64_t)value_;
//- (BOOL)validateMarketingSourceId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *guestCardsAsPrimaryMarketingSource;
+
+
+
+@property (nonatomic, strong) NSSet* guestCardsAsPrimaryMarketingSource;
- (NSMutableSet*)guestCardsAsPrimaryMarketingSourceSet;
-@property (nonatomic, strong) NSSet *guestCardsAsSecondaryMarketingSource;
+
+
+
+@property (nonatomic, strong) NSSet* guestCardsAsSecondaryMarketingSource;
- (NSMutableSet*)guestCardsAsSecondaryMarketingSourceSet;
+
+
+
+
@end
-@interface _MarketingSource (GuestCardsAsPrimaryMarketingSourceCoreDataGeneratedAccessors)
+@interface _MarketingSource (CoreDataGeneratedAccessors)
+
- (void)addGuestCardsAsPrimaryMarketingSource:(NSSet*)value_;
- (void)removeGuestCardsAsPrimaryMarketingSource:(NSSet*)value_;
- (void)addGuestCardsAsPrimaryMarketingSourceObject:(GuestCard*)value_;
- (void)removeGuestCardsAsPrimaryMarketingSourceObject:(GuestCard*)value_;
-@end
-
-@interface _MarketingSource (GuestCardsAsSecondaryMarketingSourceCoreDataGeneratedAccessors)
- (void)addGuestCardsAsSecondaryMarketingSource:(NSSet*)value_;
- (void)removeGuestCardsAsSecondaryMarketingSource:(NSSet*)value_;
- (void)addGuestCardsAsSecondaryMarketingSourceObject:(GuestCard*)value_;
@@ -118,52 +180,86 @@ extern const struct MarketingSourceRelationships {
@interface _MarketingSource (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveCategory;
- (void)setPrimitiveCategory:(NSString*)value;
+
+
+
- (NSNumber*)primitiveCategorySortOrder;
- (void)setPrimitiveCategorySortOrder:(NSNumber*)value;
- (int16_t)primitiveCategorySortOrderValue;
- (void)setPrimitiveCategorySortOrderValue:(int16_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveMarketingSourceId;
- (void)setPrimitiveMarketingSourceId:(NSNumber*)value;
- (int64_t)primitiveMarketingSourceIdValue;
- (void)setPrimitiveMarketingSourceIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
+
- (NSMutableSet*)primitiveGuestCardsAsPrimaryMarketingSource;
- (void)setPrimitiveGuestCardsAsPrimaryMarketingSource:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveGuestCardsAsSecondaryMarketingSource;
- (void)setPrimitiveGuestCardsAsSecondaryMarketingSource:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_MarketingSource.m b/Source/Models/MachineModels/_MarketingSource.m
index abb59f9..39776b1 100644
--- a/Source/Models/MachineModels/_MarketingSource.m
+++ b/Source/Models/MachineModels/_MarketingSource.m
@@ -21,6 +21,9 @@ const struct MarketingSourceRelationships MarketingSourceRelationships = {
.guestCardsAsSecondaryMarketingSource = @"guestCardsAsSecondaryMarketingSource",
};
+const struct MarketingSourceFetchedProperties MarketingSourceFetchedProperties = {
+};
+
@implementation MarketingSourceID
@end
@@ -44,35 +47,36 @@ const struct MarketingSourceRelationships MarketingSourceRelationships = {
return (MarketingSourceID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"categorySortOrderValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"categorySortOrder"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"marketingSourceIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"marketingSourceId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -91,10 +95,21 @@ const struct MarketingSourceRelationships MarketingSourceRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic category;
+
+
+
+
+
@dynamic categorySortOrder;
+
+
- (int16_t)categorySortOrderValue {
NSNumber *result = [self categorySortOrder];
return [result shortValue];
@@ -113,14 +128,35 @@ const struct MarketingSourceRelationships MarketingSourceRelationships = {
[self setPrimitiveCategorySortOrder:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic marketingSourceId;
+
+
- (int64_t)marketingSourceIdValue {
NSNumber *result = [self marketingSourceId];
return [result longLongValue];
@@ -139,10 +175,21 @@ const struct MarketingSourceRelationships MarketingSourceRelationships = {
[self setPrimitiveMarketingSourceId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -161,29 +208,43 @@ const struct MarketingSourceRelationships MarketingSourceRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic community;
+
+
@dynamic guestCardsAsPrimaryMarketingSource;
+
- (NSMutableSet*)guestCardsAsPrimaryMarketingSourceSet {
[self willAccessValueForKey:@"guestCardsAsPrimaryMarketingSource"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardsAsPrimaryMarketingSource"];
-
+
[self didAccessValueForKey:@"guestCardsAsPrimaryMarketingSource"];
return result;
}
+
@dynamic guestCardsAsSecondaryMarketingSource;
+
- (NSMutableSet*)guestCardsAsSecondaryMarketingSourceSet {
[self willAccessValueForKey:@"guestCardsAsSecondaryMarketingSource"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardsAsSecondaryMarketingSource"];
-
+
[self didAccessValueForKey:@"guestCardsAsSecondaryMarketingSource"];
return result;
}
+
+
-@end
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_ProspectiveTenant.h b/Source/Models/MachineModels/_ProspectiveTenant.h
index e67e058..4224dc1 100644
--- a/Source/Models/MachineModels/_ProspectiveTenant.h
+++ b/Source/Models/MachineModels/_ProspectiveTenant.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct ProspectiveTenantAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *agreedToBrokerTerms;
@@ -47,10 +48,49 @@ extern const struct ProspectiveTenantRelationships {
__unsafe_unretained NSString *guestCardAsPrimaryProspectiveTenant;
} ProspectiveTenantRelationships;
+extern const struct ProspectiveTenantFetchedProperties {
+} ProspectiveTenantFetchedProperties;
+
@class ApplicationInfo;
@class GuestCard;
@class GuestCard;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@interface ProspectiveTenantID : NSManagedObjectID {}
@end
@@ -58,199 +98,354 @@ extern const struct ProspectiveTenantRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) ProspectiveTenantID* objectID;
+- (ProspectiveTenantID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* agreedToBrokerTerms;
-@property (atomic) BOOL agreedToBrokerTermsValue;
+
+@property BOOL agreedToBrokerTermsValue;
- (BOOL)agreedToBrokerTermsValue;
- (void)setAgreedToBrokerTermsValue:(BOOL)value_;
//- (BOOL)validateAgreedToBrokerTerms:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* brokerDisclosureSignatureDate;
+
//- (BOOL)validateBrokerDisclosureSignatureDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSData* brokerDisclosureSignatureImageData;
+
//- (BOOL)validateBrokerDisclosureSignatureImageData:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* brokerDisclosureSignatureURLString;
+
//- (BOOL)validateBrokerDisclosureSignatureURLString:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* city;
+
//- (BOOL)validateCity:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* community;
-@property (atomic) int64_t communityValue;
+
+@property int64_t communityValue;
- (int64_t)communityValue;
- (void)setCommunityValue:(int64_t)value_;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* country;
+
//- (BOOL)validateCountry:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* driversLicenseNumber;
+
//- (BOOL)validateDriversLicenseNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* email;
+
//- (BOOL)validateEmail:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* employmentInfo;
+
//- (BOOL)validateEmploymentInfo:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* fax;
+
//- (BOOL)validateFax:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* firstName;
+
//- (BOOL)validateFirstName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* guestCardId;
-@property (atomic) int64_t guestCardIdValue;
+
+@property int64_t guestCardIdValue;
- (int64_t)guestCardIdValue;
- (void)setGuestCardIdValue:(int64_t)value_;
//- (BOOL)validateGuestCardId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isPrimary;
-@property (atomic) BOOL isPrimaryValue;
+
+@property BOOL isPrimaryValue;
- (BOOL)isPrimaryValue;
- (void)setIsPrimaryValue:(BOOL)value_;
//- (BOOL)validateIsPrimary:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* lastName;
+
//- (BOOL)validateLastName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* name;
+
//- (BOOL)validateName:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* phone;
+
//- (BOOL)validatePhone:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* phoneNumber;
+
//- (BOOL)validatePhoneNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* phoneNumberType;
+
//- (BOOL)validatePhoneNumberType:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* prospectId;
-@property (atomic) int64_t prospectIdValue;
+
+@property int64_t prospectIdValue;
- (int64_t)prospectIdValue;
- (void)setProspectIdValue:(int64_t)value_;
//- (BOOL)validateProspectId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* prospectiveTenantId;
-@property (atomic) int64_t prospectiveTenantIdValue;
+
+@property int64_t prospectiveTenantIdValue;
- (int64_t)prospectiveTenantIdValue;
- (void)setProspectiveTenantIdValue:(int64_t)value_;
//- (BOOL)validateProspectiveTenantId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* secondaryPhoneNumber;
+
//- (BOOL)validateSecondaryPhoneNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* secondaryPhoneNumberType;
+
//- (BOOL)validateSecondaryPhoneNumberType:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* smsOptResponse;
-@property (atomic) int16_t smsOptResponseValue;
+
+@property int16_t smsOptResponseValue;
- (int16_t)smsOptResponseValue;
- (void)setSmsOptResponseValue:(int16_t)value_;
//- (BOOL)validateSmsOptResponse:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* state;
+
//- (BOOL)validateState:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* street1;
+
//- (BOOL)validateStreet1:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* street2;
+
//- (BOOL)validateStreet2:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* street3;
+
//- (BOOL)validateStreet3:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* uuid;
+
//- (BOOL)validateUuid:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* zip;
+
//- (BOOL)validateZip:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *applications;
+
+
+
+
+@property (nonatomic, strong) NSSet* applications;
- (NSMutableSet*)applicationsSet;
-@property (nonatomic, strong) GuestCard *guestCard;
+
+
+
+@property (nonatomic, strong) GuestCard* guestCard;
//- (BOOL)validateGuestCard:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) GuestCard *guestCardAsPrimaryProspectiveTenant;
+
+
+
+@property (nonatomic, strong) GuestCard* guestCardAsPrimaryProspectiveTenant;
//- (BOOL)validateGuestCardAsPrimaryProspectiveTenant:(id*)value_ error:(NSError**)error_;
+
+
+
+
@end
-@interface _ProspectiveTenant (ApplicationsCoreDataGeneratedAccessors)
+@interface _ProspectiveTenant (CoreDataGeneratedAccessors)
+
- (void)addApplications:(NSSet*)value_;
- (void)removeApplications:(NSSet*)value_;
- (void)addApplicationsObject:(ApplicationInfo*)value_;
@@ -260,145 +455,257 @@ extern const struct ProspectiveTenantRelationships {
@interface _ProspectiveTenant (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveAgreedToBrokerTerms;
- (void)setPrimitiveAgreedToBrokerTerms:(NSNumber*)value;
- (BOOL)primitiveAgreedToBrokerTermsValue;
- (void)setPrimitiveAgreedToBrokerTermsValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveBrokerDisclosureSignatureDate;
- (void)setPrimitiveBrokerDisclosureSignatureDate:(NSDate*)value;
+
+
+
- (NSData*)primitiveBrokerDisclosureSignatureImageData;
- (void)setPrimitiveBrokerDisclosureSignatureImageData:(NSData*)value;
+
+
+
- (NSString*)primitiveBrokerDisclosureSignatureURLString;
- (void)setPrimitiveBrokerDisclosureSignatureURLString:(NSString*)value;
+
+
+
- (NSString*)primitiveCity;
- (void)setPrimitiveCity:(NSString*)value;
+
+
+
- (NSNumber*)primitiveCommunity;
- (void)setPrimitiveCommunity:(NSNumber*)value;
- (int64_t)primitiveCommunityValue;
- (void)setPrimitiveCommunityValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveCountry;
- (void)setPrimitiveCountry:(NSString*)value;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSString*)primitiveDriversLicenseNumber;
- (void)setPrimitiveDriversLicenseNumber:(NSString*)value;
+
+
+
- (NSString*)primitiveEmail;
- (void)setPrimitiveEmail:(NSString*)value;
+
+
+
- (NSString*)primitiveEmploymentInfo;
- (void)setPrimitiveEmploymentInfo:(NSString*)value;
+
+
+
- (NSString*)primitiveFax;
- (void)setPrimitiveFax:(NSString*)value;
+
+
+
- (NSString*)primitiveFirstName;
- (void)setPrimitiveFirstName:(NSString*)value;
+
+
+
- (NSNumber*)primitiveGuestCardId;
- (void)setPrimitiveGuestCardId:(NSNumber*)value;
- (int64_t)primitiveGuestCardIdValue;
- (void)setPrimitiveGuestCardIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveIsPrimary;
- (void)setPrimitiveIsPrimary:(NSNumber*)value;
- (BOOL)primitiveIsPrimaryValue;
- (void)setPrimitiveIsPrimaryValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveLastName;
- (void)setPrimitiveLastName:(NSString*)value;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSString*)primitiveName;
- (void)setPrimitiveName:(NSString*)value;
+
+
+
- (NSString*)primitivePhone;
- (void)setPrimitivePhone:(NSString*)value;
+
+
+
- (NSString*)primitivePhoneNumber;
- (void)setPrimitivePhoneNumber:(NSString*)value;
+
+
+
- (NSString*)primitivePhoneNumberType;
- (void)setPrimitivePhoneNumberType:(NSString*)value;
+
+
+
- (NSNumber*)primitiveProspectId;
- (void)setPrimitiveProspectId:(NSNumber*)value;
- (int64_t)primitiveProspectIdValue;
- (void)setPrimitiveProspectIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveProspectiveTenantId;
- (void)setPrimitiveProspectiveTenantId:(NSNumber*)value;
- (int64_t)primitiveProspectiveTenantIdValue;
- (void)setPrimitiveProspectiveTenantIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveSecondaryPhoneNumber;
- (void)setPrimitiveSecondaryPhoneNumber:(NSString*)value;
+
+
+
- (NSString*)primitiveSecondaryPhoneNumberType;
- (void)setPrimitiveSecondaryPhoneNumberType:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSmsOptResponse;
- (void)setPrimitiveSmsOptResponse:(NSNumber*)value;
- (int16_t)primitiveSmsOptResponseValue;
- (void)setPrimitiveSmsOptResponseValue:(int16_t)value_;
+
+
+
- (NSString*)primitiveState;
- (void)setPrimitiveState:(NSString*)value;
+
+
+
- (NSString*)primitiveStreet1;
- (void)setPrimitiveStreet1:(NSString*)value;
+
+
+
- (NSString*)primitiveStreet2;
- (void)setPrimitiveStreet2:(NSString*)value;
+
+
+
- (NSString*)primitiveStreet3;
- (void)setPrimitiveStreet3:(NSString*)value;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveUuid;
- (void)setPrimitiveUuid:(NSString*)value;
+
+
+
- (NSString*)primitiveZip;
- (void)setPrimitiveZip:(NSString*)value;
+
+
+
+
- (NSMutableSet*)primitiveApplications;
- (void)setPrimitiveApplications:(NSMutableSet*)value;
+
+
- (GuestCard*)primitiveGuestCard;
- (void)setPrimitiveGuestCard:(GuestCard*)value;
+
+
- (GuestCard*)primitiveGuestCardAsPrimaryProspectiveTenant;
- (void)setPrimitiveGuestCardAsPrimaryProspectiveTenant:(GuestCard*)value;
+
@end
diff --git a/Source/Models/MachineModels/_ProspectiveTenant.m b/Source/Models/MachineModels/_ProspectiveTenant.m
index 49ccca3..ad4196f 100644
--- a/Source/Models/MachineModels/_ProspectiveTenant.m
+++ b/Source/Models/MachineModels/_ProspectiveTenant.m
@@ -47,6 +47,9 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
.guestCardAsPrimaryProspectiveTenant = @"guestCardAsPrimaryProspectiveTenant",
};
+const struct ProspectiveTenantFetchedProperties ProspectiveTenantFetchedProperties = {
+};
+
@implementation ProspectiveTenantID
@end
@@ -70,60 +73,56 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
return (ProspectiveTenantID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"agreedToBrokerTermsValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"agreedToBrokerTerms"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"community"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"guestCardIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"guestCardId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isPrimaryValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isPrimary"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"prospectIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"prospectId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"prospectiveTenantIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"prospectiveTenantId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"smsOptResponseValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"smsOptResponse"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -142,8 +141,14 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic agreedToBrokerTerms;
+
+
- (BOOL)agreedToBrokerTermsValue {
NSNumber *result = [self agreedToBrokerTerms];
return [result boolValue];
@@ -162,16 +167,42 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
[self setPrimitiveAgreedToBrokerTerms:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic brokerDisclosureSignatureDate;
+
+
+
+
+
@dynamic brokerDisclosureSignatureImageData;
+
+
+
+
+
@dynamic brokerDisclosureSignatureURLString;
+
+
+
+
+
@dynamic city;
+
+
+
+
+
@dynamic community;
+
+
- (int64_t)communityValue {
NSNumber *result = [self community];
return [result longLongValue];
@@ -190,22 +221,63 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
[self setPrimitiveCommunity:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic country;
+
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic driversLicenseNumber;
+
+
+
+
+
@dynamic email;
+
+
+
+
+
@dynamic employmentInfo;
+
+
+
+
+
@dynamic fax;
+
+
+
+
+
@dynamic firstName;
+
+
+
+
+
@dynamic guestCardId;
+
+
- (int64_t)guestCardIdValue {
NSNumber *result = [self guestCardId];
return [result longLongValue];
@@ -224,8 +296,14 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
[self setPrimitiveGuestCardId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic isPrimary;
+
+
- (BOOL)isPrimaryValue {
NSNumber *result = [self isPrimary];
return [result boolValue];
@@ -244,22 +322,63 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
[self setPrimitiveIsPrimary:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic lastName;
+
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic name;
+
+
+
+
+
@dynamic phone;
+
+
+
+
+
@dynamic phoneNumber;
+
+
+
+
+
@dynamic phoneNumberType;
+
+
+
+
+
@dynamic prospectId;
+
+
- (int64_t)prospectIdValue {
NSNumber *result = [self prospectId];
return [result longLongValue];
@@ -278,8 +397,14 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
[self setPrimitiveProspectId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic prospectiveTenantId;
+
+
- (int64_t)prospectiveTenantIdValue {
NSNumber *result = [self prospectiveTenantId];
return [result longLongValue];
@@ -298,12 +423,28 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
[self setPrimitiveProspectiveTenantId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic secondaryPhoneNumber;
+
+
+
+
+
@dynamic secondaryPhoneNumberType;
+
+
+
+
+
@dynamic smsOptResponse;
+
+
- (int16_t)smsOptResponseValue {
NSNumber *result = [self smsOptResponse];
return [result shortValue];
@@ -322,16 +463,42 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
[self setPrimitiveSmsOptResponse:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic state;
+
+
+
+
+
@dynamic street1;
+
+
+
+
+
@dynamic street2;
+
+
+
+
+
@dynamic street3;
+
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -350,24 +517,48 @@ const struct ProspectiveTenantRelationships ProspectiveTenantRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic uuid;
+
+
+
+
+
@dynamic zip;
+
+
+
+
+
@dynamic applications;
+
- (NSMutableSet*)applicationsSet {
[self willAccessValueForKey:@"applications"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"applications"];
-
+
[self didAccessValueForKey:@"applications"];
return result;
}
+
@dynamic guestCard;
+
+
@dynamic guestCardAsPrimaryProspectiveTenant;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_Quote.h b/Source/Models/MachineModels/_Quote.h
index bc147e2..625fddb 100644
--- a/Source/Models/MachineModels/_Quote.h
+++ b/Source/Models/MachineModels/_Quote.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct QuoteAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *communityId;
@@ -31,11 +32,33 @@ extern const struct QuoteRelationships {
__unsafe_unretained NSString *unit;
} QuoteRelationships;
+extern const struct QuoteFetchedProperties {
+} QuoteFetchedProperties;
+
@class Community;
@class GuestCard;
@class LeaseTerm;
@class Unit;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@interface QuoteID : NSManagedObjectID {}
@end
@@ -43,220 +66,376 @@ extern const struct QuoteRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) QuoteID* objectID;
+- (QuoteID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* deposit;
-@property (atomic) double depositValue;
+
+@property double depositValue;
- (double)depositValue;
- (void)setDepositValue:(double)value_;
//- (BOOL)validateDeposit:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* email;
+
//- (BOOL)validateEmail:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* expirationDate;
+
//- (BOOL)validateExpirationDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* guestCardId;
-@property (atomic) int64_t guestCardIdValue;
+
+@property int64_t guestCardIdValue;
- (int64_t)guestCardIdValue;
- (void)setGuestCardIdValue:(int64_t)value_;
//- (BOOL)validateGuestCardId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* leaseStartDate;
+
//- (BOOL)validateLeaseStartDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* leaseTermId;
-@property (atomic) int64_t leaseTermIdValue;
+
+@property int64_t leaseTermIdValue;
- (int64_t)leaseTermIdValue;
- (void)setLeaseTermIdValue:(int64_t)value_;
//- (BOOL)validateLeaseTermId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* moveInDate;
+
//- (BOOL)validateMoveInDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSData* moveOutDate;
+
//- (BOOL)validateMoveOutDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* quoteId;
-@property (atomic) int64_t quoteIdValue;
+
+@property int64_t quoteIdValue;
- (int64_t)quoteIdValue;
- (void)setQuoteIdValue:(int64_t)value_;
//- (BOOL)validateQuoteId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* rent;
-@property (atomic) double rentValue;
+
+@property double rentValue;
- (double)rentValue;
- (void)setRentValue:(double)value_;
//- (BOOL)validateRent:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* smsNumber;
+
//- (BOOL)validateSmsNumber:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* thirdPartyPrimaryKey;
+
//- (BOOL)validateThirdPartyPrimaryKey:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* unitId;
-@property (atomic) int64_t unitIdValue;
+
+@property int64_t unitIdValue;
- (int64_t)unitIdValue;
- (void)setUnitIdValue:(int64_t)value_;
//- (BOOL)validateUnitId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* uuid;
+
//- (BOOL)validateUuid:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) GuestCard *guestCard;
+
+
+
+@property (nonatomic, strong) GuestCard* guestCard;
//- (BOOL)validateGuestCard:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) LeaseTerm *leaseTerm;
+
+
+
+@property (nonatomic, strong) LeaseTerm* leaseTerm;
//- (BOOL)validateLeaseTerm:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Unit *unit;
+
+
+
+@property (nonatomic, strong) Unit* unit;
//- (BOOL)validateUnit:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _Quote (CoreDataGeneratedAccessors)
+
@end
@interface _Quote (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveDeposit;
- (void)setPrimitiveDeposit:(NSNumber*)value;
- (double)primitiveDepositValue;
- (void)setPrimitiveDepositValue:(double)value_;
+
+
+
- (NSString*)primitiveEmail;
- (void)setPrimitiveEmail:(NSString*)value;
+
+
+
- (NSDate*)primitiveExpirationDate;
- (void)setPrimitiveExpirationDate:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveGuestCardId;
- (void)setPrimitiveGuestCardId:(NSNumber*)value;
- (int64_t)primitiveGuestCardIdValue;
- (void)setPrimitiveGuestCardIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLeaseStartDate;
- (void)setPrimitiveLeaseStartDate:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveLeaseTermId;
- (void)setPrimitiveLeaseTermId:(NSNumber*)value;
- (int64_t)primitiveLeaseTermIdValue;
- (void)setPrimitiveLeaseTermIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveMoveInDate;
- (void)setPrimitiveMoveInDate:(NSDate*)value;
+
+
+
- (NSData*)primitiveMoveOutDate;
- (void)setPrimitiveMoveOutDate:(NSData*)value;
+
+
+
- (NSNumber*)primitiveQuoteId;
- (void)setPrimitiveQuoteId:(NSNumber*)value;
- (int64_t)primitiveQuoteIdValue;
- (void)setPrimitiveQuoteIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveRent;
- (void)setPrimitiveRent:(NSNumber*)value;
- (double)primitiveRentValue;
- (void)setPrimitiveRentValue:(double)value_;
+
+
+
- (NSString*)primitiveSmsNumber;
- (void)setPrimitiveSmsNumber:(NSString*)value;
+
+
+
- (NSString*)primitiveThirdPartyPrimaryKey;
- (void)setPrimitiveThirdPartyPrimaryKey:(NSString*)value;
+
+
+
- (NSNumber*)primitiveUnitId;
- (void)setPrimitiveUnitId:(NSNumber*)value;
- (int64_t)primitiveUnitIdValue;
- (void)setPrimitiveUnitIdValue:(int64_t)value_;
+
+
+
- (NSString*)primitiveUuid;
- (void)setPrimitiveUuid:(NSString*)value;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
+
- (GuestCard*)primitiveGuestCard;
- (void)setPrimitiveGuestCard:(GuestCard*)value;
+
+
- (LeaseTerm*)primitiveLeaseTerm;
- (void)setPrimitiveLeaseTerm:(LeaseTerm*)value;
+
+
- (Unit*)primitiveUnit;
- (void)setPrimitiveUnit:(Unit*)value;
+
@end
diff --git a/Source/Models/MachineModels/_Quote.m b/Source/Models/MachineModels/_Quote.m
index 081a221..60405a9 100644
--- a/Source/Models/MachineModels/_Quote.m
+++ b/Source/Models/MachineModels/_Quote.m
@@ -31,6 +31,9 @@ const struct QuoteRelationships QuoteRelationships = {
.unit = @"unit",
};
+const struct QuoteFetchedProperties QuoteFetchedProperties = {
+};
+
@implementation QuoteID
@end
@@ -54,55 +57,52 @@ const struct QuoteRelationships QuoteRelationships = {
return (QuoteID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"depositValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"deposit"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"guestCardIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"guestCardId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"leaseTermIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"leaseTermId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"quoteIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"quoteId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"rentValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"rent"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"unitIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"unitId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -121,8 +121,14 @@ const struct QuoteRelationships QuoteRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -141,10 +147,21 @@ const struct QuoteRelationships QuoteRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic deposit;
+
+
- (double)depositValue {
NSNumber *result = [self deposit];
return [result doubleValue];
@@ -163,12 +180,28 @@ const struct QuoteRelationships QuoteRelationships = {
[self setPrimitiveDeposit:[NSNumber numberWithDouble:value_]];
}
+
+
+
+
@dynamic email;
+
+
+
+
+
@dynamic expirationDate;
+
+
+
+
+
@dynamic guestCardId;
+
+
- (int64_t)guestCardIdValue {
NSNumber *result = [self guestCardId];
return [result longLongValue];
@@ -187,12 +220,28 @@ const struct QuoteRelationships QuoteRelationships = {
[self setPrimitiveGuestCardId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic leaseStartDate;
+
+
+
+
+
@dynamic leaseTermId;
+
+
- (int64_t)leaseTermIdValue {
NSNumber *result = [self leaseTermId];
return [result longLongValue];
@@ -211,12 +260,28 @@ const struct QuoteRelationships QuoteRelationships = {
[self setPrimitiveLeaseTermId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic moveInDate;
+
+
+
+
+
@dynamic moveOutDate;
+
+
+
+
+
@dynamic quoteId;
+
+
- (int64_t)quoteIdValue {
NSNumber *result = [self quoteId];
return [result longLongValue];
@@ -235,8 +300,14 @@ const struct QuoteRelationships QuoteRelationships = {
[self setPrimitiveQuoteId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic rent;
+
+
- (double)rentValue {
NSNumber *result = [self rent];
return [result doubleValue];
@@ -255,12 +326,28 @@ const struct QuoteRelationships QuoteRelationships = {
[self setPrimitiveRent:[NSNumber numberWithDouble:value_]];
}
+
+
+
+
@dynamic smsNumber;
+
+
+
+
+
@dynamic thirdPartyPrimaryKey;
+
+
+
+
+
@dynamic unitId;
+
+
- (int64_t)unitIdValue {
NSNumber *result = [self unitId];
return [result longLongValue];
@@ -279,15 +366,36 @@ const struct QuoteRelationships QuoteRelationships = {
[self setPrimitiveUnitId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic uuid;
+
+
+
+
+
@dynamic community;
+
+
@dynamic guestCard;
+
+
@dynamic leaseTerm;
+
+
@dynamic unit;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/MachineModels/_Unit.h b/Source/Models/MachineModels/_Unit.h
index fd47f0e..8bc429d 100644
--- a/Source/Models/MachineModels/_Unit.h
+++ b/Source/Models/MachineModels/_Unit.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct UnitAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *apt;
@@ -48,6 +49,9 @@ extern const struct UnitRelationships {
__unsafe_unretained NSString *unitPricingEntries;
} UnitRelationships;
+extern const struct UnitFetchedProperties {
+} UnitFetchedProperties;
+
@class Community;
@class Feature;
@class FloorPlate;
@@ -58,8 +62,37 @@ extern const struct UnitRelationships {
@class Quote;
@class UnitPricingEntry;
+
+
+
+
+
+
+
+
+
+
@class NSObject;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@interface UnitID : NSManagedObjectID {}
@end
@@ -67,283 +100,421 @@ extern const struct UnitRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) UnitID* objectID;
+- (UnitID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* apt;
+
//- (BOOL)validateApt:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* available;
-@property (atomic) BOOL availableValue;
+
+@property BOOL availableValue;
- (BOOL)availableValue;
- (void)setAvailableValue:(BOOL)value_;
//- (BOOL)validateAvailable:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* availableDate;
+
//- (BOOL)validateAvailableDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* bestPrice;
-@property (atomic) double bestPriceValue;
+
+@property double bestPriceValue;
- (double)bestPriceValue;
- (void)setBestPriceValue:(double)value_;
//- (BOOL)validateBestPrice:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* code;
+
//- (BOOL)validateCode:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* communityId;
-@property (atomic) int64_t communityIdValue;
+
+@property int64_t communityIdValue;
- (int64_t)communityIdValue;
- (void)setCommunityIdValue:(int64_t)value_;
//- (BOOL)validateCommunityId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* created;
+
//- (BOOL)validateCreated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* deposit;
-@property (atomic) float depositValue;
+
+@property float depositValue;
- (float)depositValue;
- (void)setDepositValue:(float)value_;
//- (BOOL)validateDeposit:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* details;
+
//- (BOOL)validateDetails:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) id featureIds;
+
//- (BOOL)validateFeatureIds:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* featured;
-@property (atomic) BOOL featuredValue;
+
+@property BOOL featuredValue;
- (BOOL)featuredValue;
- (void)setFeaturedValue:(BOOL)value_;
//- (BOOL)validateFeatured:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* floor;
-@property (atomic) int16_t floorValue;
+
+@property int16_t floorValue;
- (int16_t)floorValue;
- (void)setFloorValue:(int16_t)value_;
//- (BOOL)validateFloor:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* floorPlanId;
-@property (atomic) int64_t floorPlanIdValue;
+
+@property int64_t floorPlanIdValue;
- (int64_t)floorPlanIdValue;
- (void)setFloorPlanIdValue:(int64_t)value_;
//- (BOOL)validateFloorPlanId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* floorPlateId;
-@property (atomic) int64_t floorPlateIdValue;
+
+@property int64_t floorPlateIdValue;
- (int64_t)floorPlateIdValue;
- (void)setFloorPlateIdValue:(int64_t)value_;
//- (BOOL)validateFloorPlateId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isModel;
-@property (atomic) BOOL isModelValue;
+
+@property BOOL isModelValue;
- (BOOL)isModelValue;
- (void)setIsModelValue:(BOOL)value_;
//- (BOOL)validateIsModel:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* isTaxCreditEligible;
-@property (atomic) BOOL isTaxCreditEligibleValue;
+
+@property BOOL isTaxCreditEligibleValue;
- (BOOL)isTaxCreditEligibleValue;
- (void)setIsTaxCreditEligibleValue:(BOOL)value_;
//- (BOOL)validateIsTaxCreditEligible:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastSynced;
+
//- (BOOL)validateLastSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* lastUpdated;
+
//- (BOOL)validateLastUpdated:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* promotion;
+
//- (BOOL)validatePromotion:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* propertyId;
-@property (atomic) int64_t propertyIdValue;
+
+@property int64_t propertyIdValue;
- (int64_t)propertyIdValue;
- (void)setPropertyIdValue:(int64_t)value_;
//- (BOOL)validatePropertyId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* ready;
-@property (atomic) BOOL readyValue;
+
+@property BOOL readyValue;
- (BOOL)readyValue;
- (void)setReadyValue:(BOOL)value_;
//- (BOOL)validateReady:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* readyDate;
+
//- (BOOL)validateReadyDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* rent;
-@property (atomic) double rentValue;
+
+@property double rentValue;
- (double)rentValue;
- (void)setRentValue:(double)value_;
//- (BOOL)validateRent:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSString* status;
+
//- (BOOL)validateStatus:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* statusId;
-@property (atomic) int16_t statusIdValue;
+
+@property int16_t statusIdValue;
- (int16_t)statusIdValue;
- (void)setStatusIdValue:(int16_t)value_;
//- (BOOL)validateStatusId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* synced;
-@property (atomic) BOOL syncedValue;
+
+@property BOOL syncedValue;
- (BOOL)syncedValue;
- (void)setSyncedValue:(BOOL)value_;
//- (BOOL)validateSynced:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* unitId;
-@property (atomic) int64_t unitIdValue;
+
+@property int64_t unitIdValue;
- (int64_t)unitIdValue;
- (void)setUnitIdValue:(int64_t)value_;
//- (BOOL)validateUnitId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* xPosition;
-@property (atomic) float xPositionValue;
+
+@property float xPositionValue;
- (float)xPositionValue;
- (void)setXPositionValue:(float)value_;
//- (BOOL)validateXPosition:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* yPosition;
-@property (atomic) float yPositionValue;
+
+@property float yPositionValue;
- (float)yPositionValue;
- (void)setYPositionValue:(float)value_;
//- (BOOL)validateYPosition:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Community *community;
+
+
+
+
+@property (nonatomic, strong) Community* community;
//- (BOOL)validateCommunity:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *features;
+
+
+
+@property (nonatomic, strong) NSSet* features;
- (NSMutableSet*)featuresSet;
-@property (nonatomic, strong) FloorPlate *floorPlate;
+
+
+
+@property (nonatomic, strong) FloorPlate* floorPlate;
//- (BOOL)validateFloorPlate:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) FloorPlan *floorplan;
+
+
+
+@property (nonatomic, strong) FloorPlan* floorplan;
//- (BOOL)validateFloorplan:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) NSSet *guestCardInterestedUnits;
+
+
+
+@property (nonatomic, strong) NSSet* guestCardInterestedUnits;
- (NSMutableSet*)guestCardInterestedUnitsSet;
-@property (nonatomic, strong) NSSet *guestCardsAsReservedUnit;
+
+
+
+@property (nonatomic, strong) NSSet* guestCardsAsReservedUnit;
- (NSMutableSet*)guestCardsAsReservedUnitSet;
-@property (nonatomic, strong) NSSet *interactionUnitsShown;
+
+
+
+@property (nonatomic, strong) NSSet* interactionUnitsShown;
- (NSMutableSet*)interactionUnitsShownSet;
-@property (nonatomic, strong) NSSet *quotesWithUnit;
+
+
+
+@property (nonatomic, strong) NSSet* quotesWithUnit;
- (NSMutableSet*)quotesWithUnitSet;
-@property (nonatomic, strong) NSSet *unitPricingEntries;
+
+
+
+@property (nonatomic, strong) NSSet* unitPricingEntries;
- (NSMutableSet*)unitPricingEntriesSet;
+
+
+
+
@end
-@interface _Unit (FeaturesCoreDataGeneratedAccessors)
+@interface _Unit (CoreDataGeneratedAccessors)
+
- (void)addFeatures:(NSSet*)value_;
- (void)removeFeatures:(NSSet*)value_;
- (void)addFeaturesObject:(Feature*)value_;
- (void)removeFeaturesObject:(Feature*)value_;
-@end
-
-@interface _Unit (GuestCardInterestedUnitsCoreDataGeneratedAccessors)
- (void)addGuestCardInterestedUnits:(NSSet*)value_;
- (void)removeGuestCardInterestedUnits:(NSSet*)value_;
- (void)addGuestCardInterestedUnitsObject:(GuestCard*)value_;
- (void)removeGuestCardInterestedUnitsObject:(GuestCard*)value_;
-@end
-
-@interface _Unit (GuestCardsAsReservedUnitCoreDataGeneratedAccessors)
- (void)addGuestCardsAsReservedUnit:(NSSet*)value_;
- (void)removeGuestCardsAsReservedUnit:(NSSet*)value_;
- (void)addGuestCardsAsReservedUnitObject:(GuestCard*)value_;
- (void)removeGuestCardsAsReservedUnitObject:(GuestCard*)value_;
-@end
-
-@interface _Unit (InteractionUnitsShownCoreDataGeneratedAccessors)
- (void)addInteractionUnitsShown:(NSSet*)value_;
- (void)removeInteractionUnitsShown:(NSSet*)value_;
- (void)addInteractionUnitsShownObject:(Interaction*)value_;
- (void)removeInteractionUnitsShownObject:(Interaction*)value_;
-@end
-
-@interface _Unit (QuotesWithUnitCoreDataGeneratedAccessors)
- (void)addQuotesWithUnit:(NSSet*)value_;
- (void)removeQuotesWithUnit:(NSSet*)value_;
- (void)addQuotesWithUnitObject:(Quote*)value_;
- (void)removeQuotesWithUnitObject:(Quote*)value_;
-@end
-
-@interface _Unit (UnitPricingEntriesCoreDataGeneratedAccessors)
- (void)addUnitPricingEntries:(NSSet*)value_;
- (void)removeUnitPricingEntries:(NSSet*)value_;
- (void)addUnitPricingEntriesObject:(UnitPricingEntry*)value_;
@@ -353,178 +524,287 @@ extern const struct UnitRelationships {
@interface _Unit (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSString*)primitiveApt;
- (void)setPrimitiveApt:(NSString*)value;
+
+
+
- (NSNumber*)primitiveAvailable;
- (void)setPrimitiveAvailable:(NSNumber*)value;
- (BOOL)primitiveAvailableValue;
- (void)setPrimitiveAvailableValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveAvailableDate;
- (void)setPrimitiveAvailableDate:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveBestPrice;
- (void)setPrimitiveBestPrice:(NSNumber*)value;
- (double)primitiveBestPriceValue;
- (void)setPrimitiveBestPriceValue:(double)value_;
+
+
+
- (NSString*)primitiveCode;
- (void)setPrimitiveCode:(NSString*)value;
+
+
+
- (NSNumber*)primitiveCommunityId;
- (void)setPrimitiveCommunityId:(NSNumber*)value;
- (int64_t)primitiveCommunityIdValue;
- (void)setPrimitiveCommunityIdValue:(int64_t)value_;
+
+
+
- (NSDate*)primitiveCreated;
- (void)setPrimitiveCreated:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveDeposit;
- (void)setPrimitiveDeposit:(NSNumber*)value;
- (float)primitiveDepositValue;
- (void)setPrimitiveDepositValue:(float)value_;
+
+
+
- (NSString*)primitiveDetails;
- (void)setPrimitiveDetails:(NSString*)value;
+
+
+
- (id)primitiveFeatureIds;
- (void)setPrimitiveFeatureIds:(id)value;
+
+
+
- (NSNumber*)primitiveFeatured;
- (void)setPrimitiveFeatured:(NSNumber*)value;
- (BOOL)primitiveFeaturedValue;
- (void)setPrimitiveFeaturedValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveFloor;
- (void)setPrimitiveFloor:(NSNumber*)value;
- (int16_t)primitiveFloorValue;
- (void)setPrimitiveFloorValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveFloorPlanId;
- (void)setPrimitiveFloorPlanId:(NSNumber*)value;
- (int64_t)primitiveFloorPlanIdValue;
- (void)setPrimitiveFloorPlanIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveFloorPlateId;
- (void)setPrimitiveFloorPlateId:(NSNumber*)value;
- (int64_t)primitiveFloorPlateIdValue;
- (void)setPrimitiveFloorPlateIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveIsModel;
- (void)setPrimitiveIsModel:(NSNumber*)value;
- (BOOL)primitiveIsModelValue;
- (void)setPrimitiveIsModelValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveIsTaxCreditEligible;
- (void)setPrimitiveIsTaxCreditEligible:(NSNumber*)value;
- (BOOL)primitiveIsTaxCreditEligibleValue;
- (void)setPrimitiveIsTaxCreditEligibleValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveLastSynced;
- (void)setPrimitiveLastSynced:(NSDate*)value;
+
+
+
- (NSDate*)primitiveLastUpdated;
- (void)setPrimitiveLastUpdated:(NSDate*)value;
+
+
+
- (NSString*)primitivePromotion;
- (void)setPrimitivePromotion:(NSString*)value;
+
+
+
- (NSNumber*)primitivePropertyId;
- (void)setPrimitivePropertyId:(NSNumber*)value;
- (int64_t)primitivePropertyIdValue;
- (void)setPrimitivePropertyIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveReady;
- (void)setPrimitiveReady:(NSNumber*)value;
- (BOOL)primitiveReadyValue;
- (void)setPrimitiveReadyValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveReadyDate;
- (void)setPrimitiveReadyDate:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveRent;
- (void)setPrimitiveRent:(NSNumber*)value;
- (double)primitiveRentValue;
- (void)setPrimitiveRentValue:(double)value_;
+
+
+
- (NSString*)primitiveStatus;
- (void)setPrimitiveStatus:(NSString*)value;
+
+
+
- (NSNumber*)primitiveStatusId;
- (void)setPrimitiveStatusId:(NSNumber*)value;
- (int16_t)primitiveStatusIdValue;
- (void)setPrimitiveStatusIdValue:(int16_t)value_;
+
+
+
- (NSNumber*)primitiveSynced;
- (void)setPrimitiveSynced:(NSNumber*)value;
- (BOOL)primitiveSyncedValue;
- (void)setPrimitiveSyncedValue:(BOOL)value_;
+
+
+
- (NSNumber*)primitiveUnitId;
- (void)setPrimitiveUnitId:(NSNumber*)value;
- (int64_t)primitiveUnitIdValue;
- (void)setPrimitiveUnitIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveXPosition;
- (void)setPrimitiveXPosition:(NSNumber*)value;
- (float)primitiveXPositionValue;
- (void)setPrimitiveXPositionValue:(float)value_;
+
+
+
- (NSNumber*)primitiveYPosition;
- (void)setPrimitiveYPosition:(NSNumber*)value;
- (float)primitiveYPositionValue;
- (void)setPrimitiveYPositionValue:(float)value_;
+
+
+
+
- (Community*)primitiveCommunity;
- (void)setPrimitiveCommunity:(Community*)value;
+
+
- (NSMutableSet*)primitiveFeatures;
- (void)setPrimitiveFeatures:(NSMutableSet*)value;
+
+
- (FloorPlate*)primitiveFloorPlate;
- (void)setPrimitiveFloorPlate:(FloorPlate*)value;
+
+
- (FloorPlan*)primitiveFloorplan;
- (void)setPrimitiveFloorplan:(FloorPlan*)value;
+
+
- (NSMutableSet*)primitiveGuestCardInterestedUnits;
- (void)setPrimitiveGuestCardInterestedUnits:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveGuestCardsAsReservedUnit;
- (void)setPrimitiveGuestCardsAsReservedUnit:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveInteractionUnitsShown;
- (void)setPrimitiveInteractionUnitsShown:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveQuotesWithUnit;
- (void)setPrimitiveQuotesWithUnit:(NSMutableSet*)value;
+
+
- (NSMutableSet*)primitiveUnitPricingEntries;
- (void)setPrimitiveUnitPricingEntries:(NSMutableSet*)value;
+
@end
diff --git a/Source/Models/MachineModels/_Unit.m b/Source/Models/MachineModels/_Unit.m
index 2350046..b9c9e75 100644
--- a/Source/Models/MachineModels/_Unit.m
+++ b/Source/Models/MachineModels/_Unit.m
@@ -48,6 +48,9 @@ const struct UnitRelationships UnitRelationships = {
.unitPricingEntries = @"unitPricingEntries",
};
+const struct UnitFetchedProperties UnitFetchedProperties = {
+};
+
@implementation UnitID
@end
@@ -71,110 +74,96 @@ const struct UnitRelationships UnitRelationships = {
return (UnitID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"availableValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"available"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"bestPriceValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"bestPrice"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"communityIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"communityId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"depositValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"deposit"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"featuredValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"featured"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"floorValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"floor"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"floorPlanIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"floorPlanId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"floorPlateIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"floorPlateId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isModelValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isModel"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"isTaxCreditEligibleValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"isTaxCreditEligible"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"propertyIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"propertyId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"readyValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"ready"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"rentValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"rent"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"statusIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"statusId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"syncedValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"synced"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"unitIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"unitId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"xPositionValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"xPosition"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"yPositionValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"yPosition"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -193,10 +182,21 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic apt;
+
+
+
+
+
@dynamic available;
+
+
- (BOOL)availableValue {
NSNumber *result = [self available];
return [result boolValue];
@@ -215,10 +215,21 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveAvailable:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic availableDate;
+
+
+
+
+
@dynamic bestPrice;
+
+
- (double)bestPriceValue {
NSNumber *result = [self bestPrice];
return [result doubleValue];
@@ -237,10 +248,21 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveBestPrice:[NSNumber numberWithDouble:value_]];
}
+
+
+
+
@dynamic code;
+
+
+
+
+
@dynamic communityId;
+
+
- (int64_t)communityIdValue {
NSNumber *result = [self communityId];
return [result longLongValue];
@@ -259,10 +281,21 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveCommunityId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic created;
+
+
+
+
+
@dynamic deposit;
+
+
- (float)depositValue {
NSNumber *result = [self deposit];
return [result floatValue];
@@ -281,12 +314,28 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveDeposit:[NSNumber numberWithFloat:value_]];
}
+
+
+
+
@dynamic details;
+
+
+
+
+
@dynamic featureIds;
+
+
+
+
+
@dynamic featured;
+
+
- (BOOL)featuredValue {
NSNumber *result = [self featured];
return [result boolValue];
@@ -305,8 +354,14 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveFeatured:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic floor;
+
+
- (int16_t)floorValue {
NSNumber *result = [self floor];
return [result shortValue];
@@ -325,8 +380,14 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveFloor:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic floorPlanId;
+
+
- (int64_t)floorPlanIdValue {
NSNumber *result = [self floorPlanId];
return [result longLongValue];
@@ -345,8 +406,14 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveFloorPlanId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic floorPlateId;
+
+
- (int64_t)floorPlateIdValue {
NSNumber *result = [self floorPlateId];
return [result longLongValue];
@@ -365,8 +432,14 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveFloorPlateId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic isModel;
+
+
- (BOOL)isModelValue {
NSNumber *result = [self isModel];
return [result boolValue];
@@ -385,8 +458,14 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveIsModel:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic isTaxCreditEligible;
+
+
- (BOOL)isTaxCreditEligibleValue {
NSNumber *result = [self isTaxCreditEligible];
return [result boolValue];
@@ -405,14 +484,35 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveIsTaxCreditEligible:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic lastSynced;
+
+
+
+
+
@dynamic lastUpdated;
+
+
+
+
+
@dynamic promotion;
+
+
+
+
+
@dynamic propertyId;
+
+
- (int64_t)propertyIdValue {
NSNumber *result = [self propertyId];
return [result longLongValue];
@@ -431,8 +531,14 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitivePropertyId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic ready;
+
+
- (BOOL)readyValue {
NSNumber *result = [self ready];
return [result boolValue];
@@ -451,10 +557,21 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveReady:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic readyDate;
+
+
+
+
+
@dynamic rent;
+
+
- (double)rentValue {
NSNumber *result = [self rent];
return [result doubleValue];
@@ -473,10 +590,21 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveRent:[NSNumber numberWithDouble:value_]];
}
+
+
+
+
@dynamic status;
+
+
+
+
+
@dynamic statusId;
+
+
- (int16_t)statusIdValue {
NSNumber *result = [self statusId];
return [result shortValue];
@@ -495,8 +623,14 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveStatusId:[NSNumber numberWithShort:value_]];
}
+
+
+
+
@dynamic synced;
+
+
- (BOOL)syncedValue {
NSNumber *result = [self synced];
return [result boolValue];
@@ -515,8 +649,14 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveSynced:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic unitId;
+
+
- (int64_t)unitIdValue {
NSNumber *result = [self unitId];
return [result longLongValue];
@@ -535,8 +675,14 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveUnitId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic xPosition;
+
+
- (float)xPositionValue {
NSNumber *result = [self xPosition];
return [result floatValue];
@@ -555,8 +701,14 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveXPosition:[NSNumber numberWithFloat:value_]];
}
+
+
+
+
@dynamic yPosition;
+
+
- (float)yPositionValue {
NSNumber *result = [self yPosition];
return [result floatValue];
@@ -575,77 +727,103 @@ const struct UnitRelationships UnitRelationships = {
[self setPrimitiveYPosition:[NSNumber numberWithFloat:value_]];
}
+
+
+
+
@dynamic community;
+
+
@dynamic features;
+
- (NSMutableSet*)featuresSet {
[self willAccessValueForKey:@"features"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"features"];
-
+
[self didAccessValueForKey:@"features"];
return result;
}
+
@dynamic floorPlate;
+
+
@dynamic floorplan;
+
+
@dynamic guestCardInterestedUnits;
+
- (NSMutableSet*)guestCardInterestedUnitsSet {
[self willAccessValueForKey:@"guestCardInterestedUnits"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardInterestedUnits"];
-
+
[self didAccessValueForKey:@"guestCardInterestedUnits"];
return result;
}
+
@dynamic guestCardsAsReservedUnit;
+
- (NSMutableSet*)guestCardsAsReservedUnitSet {
[self willAccessValueForKey:@"guestCardsAsReservedUnit"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"guestCardsAsReservedUnit"];
-
+
[self didAccessValueForKey:@"guestCardsAsReservedUnit"];
return result;
}
+
@dynamic interactionUnitsShown;
+
- (NSMutableSet*)interactionUnitsShownSet {
[self willAccessValueForKey:@"interactionUnitsShown"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"interactionUnitsShown"];
-
+
[self didAccessValueForKey:@"interactionUnitsShown"];
return result;
}
+
@dynamic quotesWithUnit;
+
- (NSMutableSet*)quotesWithUnitSet {
[self willAccessValueForKey:@"quotesWithUnit"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"quotesWithUnit"];
-
+
[self didAccessValueForKey:@"quotesWithUnit"];
return result;
}
+
@dynamic unitPricingEntries;
+
- (NSMutableSet*)unitPricingEntriesSet {
[self willAccessValueForKey:@"unitPricingEntries"];
-
+
NSMutableSet *result = (NSMutableSet*)[self mutableSetValueForKey:@"unitPricingEntries"];
-
+
[self didAccessValueForKey:@"unitPricingEntries"];
return result;
}
+
+
+
-@end
+
+
+@end
diff --git a/Source/Models/MachineModels/_UnitPricingEntry.h b/Source/Models/MachineModels/_UnitPricingEntry.h
index a12cc13..7d94399 100644
--- a/Source/Models/MachineModels/_UnitPricingEntry.h
+++ b/Source/Models/MachineModels/_UnitPricingEntry.h
@@ -3,6 +3,7 @@
#import <CoreData/CoreData.h>
+
extern const struct UnitPricingEntryAttributes {
__unsafe_unretained NSString *active;
__unsafe_unretained NSString *endDate;
@@ -18,9 +19,20 @@ extern const struct UnitPricingEntryRelationships {
__unsafe_unretained NSString *unit;
} UnitPricingEntryRelationships;
+extern const struct UnitPricingEntryFetchedProperties {
+} UnitPricingEntryFetchedProperties;
+
@class LeaseTerm;
@class Unit;
+
+
+
+
+
+
+
+
@interface UnitPricingEntryID : NSManagedObjectID {}
@end
@@ -28,108 +40,177 @@ extern const struct UnitPricingEntryRelationships {
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
+ (NSString*)entityName;
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
-@property (nonatomic, readonly, strong) UnitPricingEntryID* objectID;
+- (UnitPricingEntryID*)objectID;
+
+
+
@property (nonatomic, strong) NSNumber* active;
-@property (atomic) BOOL activeValue;
+
+@property BOOL activeValue;
- (BOOL)activeValue;
- (void)setActiveValue:(BOOL)value_;
//- (BOOL)validateActive:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* endDate;
+
//- (BOOL)validateEndDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* leaseTermId;
-@property (atomic) int64_t leaseTermIdValue;
+
+@property int64_t leaseTermIdValue;
- (int64_t)leaseTermIdValue;
- (void)setLeaseTermIdValue:(int64_t)value_;
//- (BOOL)validateLeaseTermId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* rent;
-@property (atomic) double rentValue;
+
+@property double rentValue;
- (double)rentValue;
- (void)setRentValue:(double)value_;
//- (BOOL)validateRent:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSDate* startDate;
+
//- (BOOL)validateStartDate:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* unitId;
-@property (atomic) int64_t unitIdValue;
+
+@property int64_t unitIdValue;
- (int64_t)unitIdValue;
- (void)setUnitIdValue:(int64_t)value_;
//- (BOOL)validateUnitId:(id*)value_ error:(NSError**)error_;
+
+
+
@property (nonatomic, strong) NSNumber* unitPricingEntryId;
-@property (atomic) int64_t unitPricingEntryIdValue;
+
+@property int64_t unitPricingEntryIdValue;
- (int64_t)unitPricingEntryIdValue;
- (void)setUnitPricingEntryIdValue:(int64_t)value_;
//- (BOOL)validateUnitPricingEntryId:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) LeaseTerm *leaseTerm;
+
+
+
+
+@property (nonatomic, strong) LeaseTerm* leaseTerm;
//- (BOOL)validateLeaseTerm:(id*)value_ error:(NSError**)error_;
-@property (nonatomic, strong) Unit *unit;
+
+
+
+@property (nonatomic, strong) Unit* unit;
//- (BOOL)validateUnit:(id*)value_ error:(NSError**)error_;
+
+
+
+
+@end
+
+@interface _UnitPricingEntry (CoreDataGeneratedAccessors)
+
@end
@interface _UnitPricingEntry (CoreDataGeneratedPrimitiveAccessors)
+
- (NSNumber*)primitiveActive;
- (void)setPrimitiveActive:(NSNumber*)value;
- (BOOL)primitiveActiveValue;
- (void)setPrimitiveActiveValue:(BOOL)value_;
+
+
+
- (NSDate*)primitiveEndDate;
- (void)setPrimitiveEndDate:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveLeaseTermId;
- (void)setPrimitiveLeaseTermId:(NSNumber*)value;
- (int64_t)primitiveLeaseTermIdValue;
- (void)setPrimitiveLeaseTermIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveRent;
- (void)setPrimitiveRent:(NSNumber*)value;
- (double)primitiveRentValue;
- (void)setPrimitiveRentValue:(double)value_;
+
+
+
- (NSDate*)primitiveStartDate;
- (void)setPrimitiveStartDate:(NSDate*)value;
+
+
+
- (NSNumber*)primitiveUnitId;
- (void)setPrimitiveUnitId:(NSNumber*)value;
- (int64_t)primitiveUnitIdValue;
- (void)setPrimitiveUnitIdValue:(int64_t)value_;
+
+
+
- (NSNumber*)primitiveUnitPricingEntryId;
- (void)setPrimitiveUnitPricingEntryId:(NSNumber*)value;
- (int64_t)primitiveUnitPricingEntryIdValue;
- (void)setPrimitiveUnitPricingEntryIdValue:(int64_t)value_;
+
+
+
+
- (LeaseTerm*)primitiveLeaseTerm;
- (void)setPrimitiveLeaseTerm:(LeaseTerm*)value;
+
+
- (Unit*)primitiveUnit;
- (void)setPrimitiveUnit:(Unit*)value;
+
@end
diff --git a/Source/Models/MachineModels/_UnitPricingEntry.m b/Source/Models/MachineModels/_UnitPricingEntry.m
index 4989236..090b85a 100644
--- a/Source/Models/MachineModels/_UnitPricingEntry.m
+++ b/Source/Models/MachineModels/_UnitPricingEntry.m
@@ -18,6 +18,9 @@ const struct UnitPricingEntryRelationships UnitPricingEntryRelationships = {
.unit = @"unit",
};
+const struct UnitPricingEntryFetchedProperties UnitPricingEntryFetchedProperties = {
+};
+
@implementation UnitPricingEntryID
@end
@@ -41,40 +44,40 @@ const struct UnitPricingEntryRelationships UnitPricingEntryRelationships = {
return (UnitPricingEntryID*)[super objectID];
}
-+ (NSSet*)keyPathsForValuesAffectingValueForKey:(NSString*)key {
++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
-
+
if ([key isEqualToString:@"activeValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"active"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"leaseTermIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"leaseTermId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"rentValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"rent"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"unitIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"unitId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
if ([key isEqualToString:@"unitPricingEntryIdValue"]) {
NSSet *affectingKey = [NSSet setWithObject:@"unitPricingEntryId"];
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
- return keyPaths;
}
return keyPaths;
}
+
+
+
@dynamic active;
+
+
- (BOOL)activeValue {
NSNumber *result = [self active];
return [result boolValue];
@@ -93,10 +96,21 @@ const struct UnitPricingEntryRelationships UnitPricingEntryRelationships = {
[self setPrimitiveActive:[NSNumber numberWithBool:value_]];
}
+
+
+
+
@dynamic endDate;
+
+
+
+
+
@dynamic leaseTermId;
+
+
- (int64_t)leaseTermIdValue {
NSNumber *result = [self leaseTermId];
return [result longLongValue];
@@ -115,8 +129,14 @@ const struct UnitPricingEntryRelationships UnitPricingEntryRelationships = {
[self setPrimitiveLeaseTermId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic rent;
+
+
- (double)rentValue {
NSNumber *result = [self rent];
return [result doubleValue];
@@ -135,10 +155,21 @@ const struct UnitPricingEntryRelationships UnitPricingEntryRelationships = {
[self setPrimitiveRent:[NSNumber numberWithDouble:value_]];
}
+
+
+
+
@dynamic startDate;
+
+
+
+
+
@dynamic unitId;
+
+
- (int64_t)unitIdValue {
NSNumber *result = [self unitId];
return [result longLongValue];
@@ -157,8 +188,14 @@ const struct UnitPricingEntryRelationships UnitPricingEntryRelationships = {
[self setPrimitiveUnitId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic unitPricingEntryId;
+
+
- (int64_t)unitPricingEntryIdValue {
NSNumber *result = [self unitPricingEntryId];
return [result longLongValue];
@@ -177,9 +214,21 @@ const struct UnitPricingEntryRelationships UnitPricingEntryRelationships = {
[self setPrimitiveUnitPricingEntryId:[NSNumber numberWithLongLong:value_]];
}
+
+
+
+
@dynamic leaseTerm;
+
+
@dynamic unit;
-@end
+
+
+
+
+
+
+@end
diff --git a/Source/Models/perimeter.xcdatamodeld/PPL Data Model 2015-2.xcdatamodel/contents b/Source/Models/perimeter.xcdatamodeld/PPL Data Model 2015-2.xcdatamodel/contents
index 40454f4..b52a70a 100644
--- a/Source/Models/perimeter.xcdatamodeld/PPL Data Model 2015-2.xcdatamodel/contents
+++ b/Source/Models/perimeter.xcdatamodeld/PPL Data Model 2015-2.xcdatamodel/contents
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<model userDefinedModelVersionIdentifier="" type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="6254" systemVersion="14C109" minimumToolsVersion="Automatic" macOSVersion="Automatic" iOSVersion="Automatic">
+<model userDefinedModelVersionIdentifier="" type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="6254" systemVersion="14C81f" minimumToolsVersion="Automatic" macOSVersion="Automatic" iOSVersion="Automatic">
<entity name="Amenity" representedClassName="Amenity" syncable="YES">
<attribute name="active" optional="YES" attributeType="Boolean" defaultValueString="YES" syncable="YES"/>
<attribute name="amenityId" optional="YES" attributeType="Integer 64" defaultValueString="0" syncable="YES"/>
@@ -366,6 +366,7 @@
<attribute name="interactionIds" optional="YES" attributeType="Transformable" syncable="YES"/>
<attribute name="interestedUnitIds" optional="YES" attributeType="Transformable" syncable="YES"/>
<attribute name="isChangedLocally" optional="YES" attributeType="Boolean" defaultValueString="NO" syncable="YES"/>
+ <attribute name="isLeadGuestCard" optional="YES" attributeType="Boolean" syncable="YES"/>
<attribute name="isTaxCreditEligible" optional="YES" attributeType="Boolean" syncable="YES"/>
<attribute name="isUnitReserved" optional="YES" attributeType="Integer 64" defaultValueString="0" syncable="YES"/>
<attribute name="isWalkIn" optional="YES" attributeType="Boolean" syncable="YES"/>
@@ -645,7 +646,7 @@
<element name="Feature" positionX="-542" positionY="414" width="128" height="210"/>
<element name="FloorPlan" positionX="-83" positionY="153" width="128" height="375"/>
<element name="FloorPlate" positionX="-1089" positionY="306" width="128" height="165"/>
- <element name="GuestCard" positionX="-1296" positionY="516" width="128" height="1050"/>
+ <element name="GuestCard" positionX="-1296" positionY="516" width="128" height="1065"/>
<element name="Interaction" positionX="160" positionY="192" width="128" height="480"/>
<element name="InteractionResult" positionX="160" positionY="192" width="128" height="178"/>
<element name="LeaseTerm" positionX="-234" positionY="816" width="128" height="270"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment