Say I have an Array with multiple types: [“Hello World”, true, 3] (String, Bool, Int)
Would I be able to save the above in parse? I have attempted to do the following with no avail:
struct Template: ParseObject {
var originalData: Data?
var objectId: String?
var createdAt: Date?
var updatedAt: Date?
var ACL: ParseACL?
var template: [String]?
var templateData: [Any]?
}