import type { CustomAttribute } from './CustomAttribute'; import type { TopicAddressEnumValue } from './TopicAddressEnumValue'; export type TopicAddressEnumVersion = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; enumId: string; description?: string; version: string; displayName?: string; values: Array; readonly referencedByEventVersionIds?: Array; readonly referencedByTopicDomainIds?: Array; readonly stateId?: string; customAttributes?: Array; readonly type?: string; };