Page
public struct Page
extension Page: Codable
extension Page: JSONDecodable
extension Page: DictionaryConvertible
extension Page: Equatable
                Simple object which contains a Page and record objects.
- 
                  
                  
The page info
Declaration
Swift
public var info: PageInfo - 
                  
                  
The table name for this page
Declaration
Swift
public var tableName: String - 
                  
                  
All record info as JSON
Declaration
Swift
public var records: [RecordJSON] - 
                  
                  
Create a page instance
Declaration
Swift
public init(info: PageInfo, tableName: String, records: [RecordJSON]) 
- 
                  
                  
Return information about deleted record only if the table is special one that keep track of deleted records otherwise return nil
Declaration
Swift
public var deletedRecords: [DeletedRecord]? { get } - 
                  
                  
Undocumented
Declaration
Swift
public init?(json: JSON) 
- 
                  
                  
Declaration
Swift
public var dictionary: DictionaryConvertible.Dico { get } 
- 
                  
                  
Declaration
Swift
public static func == (lhf: Page, rhf: Page) -> Bool 
        Page Structure Reference