flatfile-csv-importer
Version:
A simple adapter for elegantly importing CSV files via flatfile.io (Typescript, ES6, Browser)
30 lines (29 loc) • 791 B
TypeScript
import EndUserObject from './obj.end-user';
export default class EndUser {
private $user;
constructor(meta: EndUserObject);
/**
* The UUID referencing the user's record stored in Flatfile
*/
readonly id: string;
/**
* Your internal ID reference for this user (required)
*/
readonly userId: string;
/**
* The user's full name if you provided it
*/
readonly name: string | undefined;
/**
* The user's email if you provided it
*/
readonly email: string | undefined;
/**
* The company name the user is currently operating under
*/
readonly companyName: string | undefined;
/**
* The company name the user is currently operating under
*/
readonly companyId: string | undefined;
}