import type { ResourceWithId } from "./resource"; import type { SensitiveValue } from "./propertyValueResource"; export interface ApiKeyResource extends ResourceWithId { ApiKey: SensitiveValue; Created: string; Expires: string; Purpose: string; UserId: string; }