import type { attributes } from './attributes'; import type { CommonUserName } from './CommonUserName'; /** * A profile for a developer. After the developer is created, they can register an app and receive API credentials */ export declare type Developer = { email: string; firstName: string; lastName: string; userName: CommonUserName; attributes?: attributes; };