import { APIResource } from "../core/resource.js"; import { APIPromise } from "../core/api-promise.js"; import { RequestOptions } from "../internal/request-options.js"; export declare class Identity extends APIResource { /** * Get info about the API key used to authenticate, and the org that owns it. */ retrieve(options?: RequestOptions): APIPromise; } export interface IdentityRetrieveResponse { /** * Display name of the API key used, if it has one. */ api_key_name: string | null; /** * Display name of the org. */ org_name: string; } export declare namespace Identity { export { type IdentityRetrieveResponse as IdentityRetrieveResponse }; } //# sourceMappingURL=identity.d.ts.map