/***************************************************************
 * Copyright © 2017 HERE Global B.V. All rights reserved. *
 **************************************************************/

#import "HereSDKUser+Dictionary.h"
#import "NSDate+NSNumber.h"

@implementation HereSDKUser (Dictionary)

- (NSDictionary *)dictionary
{
    return @{
             @"userId": self.userId,
             @"expirationSec": self.expiration.hereSdk_toNumber,
             @"hash": self.verificationHash
             };
}

@end
