Type Aliases
The following type aliases are available globally.
-
Undocumented
Declaration
Swift
public typealias AggregationCustomResult<T> = (value: T, custom: JsonDictionary) where T : Persistable
-
Undocumented
Declaration
Swift
public typealias AggregationCountResult<T, Count> = (value: T, count: Count) where T : Persistable, Count : CountType
-
Undocumented
Declaration
Swift
public typealias AggregationSumResult<T, Sum> = (value: T, sum: Sum) where T : Persistable, Sum : AddableType
-
Undocumented
Declaration
Swift
public typealias AggregationAvgResult<T, Avg> = (value: T, avg: Avg) where T : Persistable, Avg : AddableType
-
Undocumented
Declaration
Swift
public typealias AggregationMinResult<T, Min> = (value: T, min: Min) where T : Persistable, Min : MinMaxType
-
Undocumented
Declaration
Swift
public typealias AggregationMaxResult<T, Max> = (value: T, max: Max) where T : Persistable, Max : MinMaxType
-
Undocumented
Declaration
Swift
public typealias List<T> = RealmSwift.List<T> where T : RealmSwiftObject
-
Undocumented
Declaration
Swift
public typealias Object = RealmSwift.Object
-
Undocumented
Declaration
Swift
public typealias JSONCodable = JSONDecodable & JSONEncodable
-
Undocumented
Declaration
Swift
public typealias JsonDictionary = [String : Any]
-
Undocumented
Declaration
Swift
public typealias Schema = (version: CUnsignedLongLong, migrationHandler: Migration.MigrationHandler?)
-
Undocumented
Declaration
Swift
public typealias Map = ObjectMapper.Map
-
Undocumented
Declaration
Swift
public typealias Mappable = ObjectMapper.Mappable
-
Undocumented
Declaration
Swift
public typealias StaticMappable = ObjectMapper.StaticMappable
-
Undocumented
Declaration
Swift
public typealias TransformType = ObjectMapper.TransformType
-
Undocumented
Declaration
Swift
public typealias TransformOf = ObjectMapper.TransformOf
-
Undocumented
Declaration
Swift
public typealias BaseMappable = ObjectMapper.BaseMappable
-
Undocumented
Declaration
Swift
public typealias MapContext = ObjectMapper.MapContext
-
Undocumented
Declaration
Swift
public typealias KinveyOptional = RealmSwift.RealmOptional
-
Undocumented
Declaration
Swift
public typealias MultiSaveResultTuple<T> = (entities: AnyRandomAccessCollection<T?>, errors: AnyRandomAccessCollection<Swift.Error>)
-
Undocumented
Declaration
Swift
public typealias TTL = (Int, TimeUnit)