export interface ApplicationKeyModel { id: string; applicationId: string; description: string; expiresOn: Date; } export interface CreateApplicationApiKeyRequest { description: string; expiresOn: Date; } export interface CreateApplicationApiKeyResponse { key: string; info: ApplicationKeyModel; }