BaseCacheElement
public class BaseCacheElement
The cache element for keeping user profile information.
-
The user profile information stored as
UserProfile
.Declaration
Swift
public var userProfile: UserProfile
-
The time the UserProfile was originally created
Declaration
Swift
public var createdAt: Date
-
Initialize a
BaseCacheElement
.Declaration
Swift
public init(profile: UserProfile)
Parameters
profile
the
UserProfile
to store.