@kubb/plugin-ts
Version:
TypeScript code generation plugin for Kubb, transforming OpenAPI schemas into TypeScript interfaces, types, and utility functions.
27 lines (25 loc) • 451 B
text/typescript
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
export type notification = (
| (documentDisapprovedNotification & {
notificationType: 'DOCUMENT_DISAPPROVED'
})
| (documentApprovedNotification & {
notificationType: 'DOCUMENT_APPROVED'
})
) & {
/**
* @type integer
*/
id: number
/**
* @type string, date-time
*/
createdAt: string
/**
* @type boolean
*/
isSeen: boolean
}