/**
 * A user to create an application API key for.
 */
export interface CreateApplicationKeyRequestItem {
    /** The user ID to scope the application API key to. */
    userId: string;
}
