LCValueResult
public enum LCValueResult<T> : LCResultType where T : LCValue
Result type for object request.
-
Undocumented
Declaration
Swift
case success(object: T)
-
Undocumented
Declaration
Swift
case failure(error: LCError)
-
Undocumented
Declaration
Swift
public init(error: LCError)
-
Undocumented
Declaration
Swift
public var error: LCError? { get }
-
Undocumented
Declaration
Swift
public var isSuccess: Bool { get }
-
Undocumented
Declaration
Swift
public var object: T? { get }