@prismatic-io/spectral
Version:
Utility library for building Prismatic connectors and code-native integrations
18 lines (17 loc) • 748 B
TypeScript
/**
* Contains attributes of the User whose user-level configuration is being used. See
* https://prismatic.io/docs/integrations/config-wizard/user-level-configuration/
*/
export interface UserAttributes {
/** Programmatic ID of the user whose user-level configuration is being used. */
id: string;
/** The email address (or embedded ID) of the user whose user-level configuration is being used. */
email: string;
/** The name of the user whose user-level configuration is being used. */
name: string;
/**
* The external ID you assign to the user whose user-level configuration is being used. See
* https://prismatic.io/docs/embed/authenticate-users/#create-and-sign-a-jwt
*/
externalId: string;
}