react-native-here-mobility-sdk
Version:
Offical Here Mobility SDK for react native to access Here's marketplace features
17 lines (15 loc) • 549 B
JavaScript
/**********************************************************
* Copyright © 2018 HERE Global B.V. All rights reserved. *
**********************************************************/
/**
* Represents a user.
* @namespace User
* @property {string} userId The unique ID of the user.
* @property {number} expirationSec The expiration of the hash, in seconds since Epoch.
* @property {string} hash Signed hash that contains the userId and expiration seconds.
*/
export type User = {
userId: string,
expirationSec: number,
hash: string
};