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