@basetime/a2w-api-ts
Version:
Client library that communicates with the addtowallet API.
38 lines (37 loc) • 705 B
TypeScript
/**
* Represents a user.
*/
export interface User {
/**
* The ID of the user.
*/
id: string;
/**
* The display name of the user.
*/
displayName: string;
/**
* The email address of the user.
*/
email: string;
/**
* The avatar URL of the user.
*/
photoURL: string;
/**
* The color of the user's avatar.
*/
avatarColor: string;
/**
* The organizations the user belongs to.
*/
organizations: string[];
/**
* The display names of the organizations the user belongs to.
*/
clientsDisplay: string[];
/**
* The date the user last logged in.
*/
dateLastLogin: Date;
}