TypedID
public class TypedID : NSObject, NSCoding
Represents entity type and its ID.
-
Undocumented
Declaration
Swift
public class TypedID : NSObject, NSCoding
-
Undocumented
Declaration
Swift
public class TypedID : NSObject, NSCoding
-
Type of the ID
All characters in this string are lower case.
Declaration
Swift
public let type:String
-
ID of the entity.
Declaration
Swift
public let id:String
-
Ininitialize TypedID with type and id.
Parameter
Parameter type: Type of the entity. All upper case characters in given string are converted to lower case.Parameter
Parameter id: ID of the entity.Declaration
Swift
public init(type:String, id:String)
Parameters
type
Type of the entity. All upper case characters in given string are converted to lower case.
id
ID of the entity.
-
Undocumented
Declaration
Swift
public class TypedID : NSObject, NSCoding