quickbooks-api
Version:
A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.
45 lines (37 loc) • 649 B
text/typescript
/**
* User profile information retrieved from Intuit's user info endpoint
*/
export interface UserProfile {
/**
* The unique identifier for the user
*/
sub: string;
/**
* Email address of the user
*/
email?: string;
/**
* Whether the email is verified
*/
emailVerified?: boolean;
/**
* Given name (first name) of the user
*/
givenName?: string;
/**
* Family name (last name) of the user
*/
familyName?: string;
/**
* Full name of the user
*/
name?: string;
/**
* Phone number of the user
*/
phoneNumber?: string;
/**
* Whether the phone number is verified
*/
phoneNumberVerified?: boolean;
}