@@ -8,9 +8,7 @@ import Foundation
88@objc ( FlowTask)
99@PersistentModel
1010public final class FlowTask : NSManagedObject {
11- @Attribute (
12- persistentName: " config_blob " , storageMethod: . codable,
13- decodeFailurePolicy: . fallbackToDefaultValue)
11+ @Attribute ( persistentName: " config_blob " , storageMethod: . codable, decodeFailurePolicy: . fallbackToDefaultValue)
1412 public var config : FlowTaskConfig ? = nil
1513
1614 @Attribute ( persistentName: " created_at " )
@@ -24,13 +22,10 @@ public final class FlowTask: NSManagedObject {
2422 @Attribute ( persistentName: " name " )
2523 public var title : String = " "
2624
27- @Attribute (
28- persistentName: " status_raw " , storageMethod: . raw, decodeFailurePolicy: . fallbackToDefaultValue)
25+ @Attribute ( persistentName: " status_raw " , storageMethod: . raw, decodeFailurePolicy: . fallbackToDefaultValue)
2926 public var status : FlowTaskStatus ? = nil
3027
31- @Attribute (
32- persistentName: " tags_payload " , storageMethod: . transformed( name: " NSSecureUnarchiveFromData " ) ,
33- decodeFailurePolicy: . fallbackToDefaultValue)
28+ @Attribute ( persistentName: " tags_payload " , storageMethod: . transformed( name: " NSSecureUnarchiveFromData " ) , decodeFailurePolicy: . fallbackToDefaultValue)
3429 public var tags : [ String ] ? = nil
3530
3631 @Relationship ( persistentName: " owner_project " , inverse: " owned_tasks " , deleteRule: . nullify)
0 commit comments