UserInfoResult

public struct UserInfoResult
extension UserInfoResult: JSONDecodable
extension UserInfoResult: Equatable

Authentication token.

  • The JSON representation

    Declaration

    Swift

    public let json: JSON
  • Operation success or not.

    Declaration

    Swift

    public var success: Bool
  • The return error value from server data

    Declaration

    Swift

    public var errors: [Any]? { get }
  • The return rest errors if any.

    Declaration

    Swift

    public var restError: RestErrors? { get }

JSON

Equatable

  • Declaration

    Swift

    public static func == (lhf: UserInfoResult, rhf: UserInfoResult) -> Bool