data class BuiltIn(val type: ToolType, val name: ToolName? = null, val max_uses: Int? = null, val max_characters: Int? = null, val max_content_tokens: Int? = null, val allowed_domains: List<String>? = null, val blocked_domains: List<String>? = null, val user_location: UserLocation? = null, val response_inclusion: String? = null, val citations: Citations? = null, val use_cache: Boolean? = null, val configs: List<ToolConfig>? = null, val strict: Boolean? = null, val defer_loading: Boolean? = null, val allowed_callers: List<Caller>? = null, val cache_control: CacheControl? = null) : Tool