I am using Swift & Parse.
I have this class :
public struct Order {
public var item: String
public var price: Double
public var comment: String
}
I know I can store an array of Strings or Ints. Is it possible to store an array of Orders in Parse?
To store the data i use this code :
var team = PFObject(className: "team")
team.setObject(*list of Orders*, forKey: "Players")