export interface HandlerDeprecationNotice { /** Whether this response concerns a deprecated field or route. */ deprecated?: boolean; /** The deprecated field name. */ deprecatedField?: string; /** API version when the field was deprecated. */ deprecatedSince?: string; /** Migration guidance message. */ message?: string; /** The canonical replacement for the deprecated field. */ preferredField?: string; }