export declare type ApplicationDomain = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; name: string; description?: string; /** * Forces all topic addresses within the application domain to be unique. */ uniqueTopicAddressEnforcementEnabled?: boolean; /** * Forces all topic addresses within the application domain to be prefixed with one of the application domain’s configured topic domains. */ topicDomainEnforcementEnabled?: boolean; type?: string; };