use nacos_macro::response;
#[response(identity = "ConfigChangeNotifyResponse", module = "config")]
pub(crate) struct ConfigChangeNotifyResponse {}
impl ConfigChangeNotifyResponse {
pub(crate) fn request_id(mut self, request_id: String) -> Self {
self.request_id = Some(request_id);
self
}
}