import type { Consumer } from './Consumer'; import type { CustomAttribute } from './CustomAttribute'; export type ApplicationVersion = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; applicationId: string; description?: string; version: string; displayName?: string; declaredProducedEventVersionIds?: Array; declaredConsumedEventVersionIds?: Array; declaredEventApiProductVersionIds?: Array; readonly stateId?: string; readonly consumers?: Array; customAttributes?: Array; readonly messagingServiceIds?: Array; type?: string; };