Inherits from LUAPIModel : NSObject
Declared in LUAccessToken.h
LUAccessToken.m

Overview

LUAccessToken represents an authentication token that is used for logins. It includes a token and the user’s ID.

Tasks

Properties

merchantID

LevelUp merchant ID if the user is associated with a particular merchant.

@property (nonatomic, copy, readonly) NSNumber *merchantID

Discussion

LevelUp merchant ID if the user is associated with a particular merchant.

Declared In

LUAccessToken.h

token

A unique access token returned by the server after authentication succeeds. In order for users to remain authenticated between application launches, this value should be securely stored. See LUAPIClient for more information.

@property (nonatomic, copy, readonly) NSString *token

Discussion

A unique access token returned by the server after authentication succeeds. In order for users to remain authenticated between application launches, this value should be securely stored. See LUAPIClient for more information.

Declared In

LUAccessToken.h

userID

The user’s ID.

@property (nonatomic, copy, readonly) NSNumber *userID

Discussion

The user’s ID.

Declared In

LUAccessToken.h