Guest User

Untitled

a guest
Apr 26th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. struct Packages : Decodable {
  2. let id: Int
  3. let name: String
  4. let idService: Int
  5. let nationality: String
  6. let totalPrice: Int
  7. let visitsPerWeek: Int
  8. let pricePerVisit: Int
  9. let excludedDays: String
  10. let excludedShifts: String
  11. let excludedDates: String
  12. let extraVisits: Int
  13. let dateEnabled: String
  14. let dateDisabled: String
  15. let allowedFrom: String
  16. let allowedTo: String
  17. let visitType: String
  18. let createdAt: String?
  19. let updatedAt: String?
  20. }
  21.  
  22. struct Root2 : Decodable {
  23. let services : [Services]
  24. let nationalities : [Nationality]
  25. let packages : [Packages]
  26. }
Add Comment
Please, Sign In to add comment