pub struct DeleteWebsiteUrlRequestDTO {
pub knowledge_base_id: String,
pub location_id: String,
pub url_ids: Vec<String>,
}Available on crate feature
knowledge-base only.Expand description
DeleteWebsiteUrlRequestDTO from the GoHighLevel OpenAPI spec.
Fields§
§knowledge_base_id: Stringknowledge base ID as string Required by the API.
location_id: Stringlocation ID as string Required by the API.
url_ids: Vec<String>List of trained urls ids ( fetched from the Get all trained page links by knowledge base endpoint) Required by the API.
Trait Implementations§
Source§impl Clone for DeleteWebsiteUrlRequestDTO
impl Clone for DeleteWebsiteUrlRequestDTO
Source§fn clone(&self) -> DeleteWebsiteUrlRequestDTO
fn clone(&self) -> DeleteWebsiteUrlRequestDTO
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DeleteWebsiteUrlRequestDTO
impl Debug for DeleteWebsiteUrlRequestDTO
Source§impl Default for DeleteWebsiteUrlRequestDTO
impl Default for DeleteWebsiteUrlRequestDTO
Source§fn default() -> DeleteWebsiteUrlRequestDTO
fn default() -> DeleteWebsiteUrlRequestDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteWebsiteUrlRequestDTO
impl<'de> Deserialize<'de> for DeleteWebsiteUrlRequestDTO
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DeleteWebsiteUrlRequestDTO
impl RefUnwindSafe for DeleteWebsiteUrlRequestDTO
impl Send for DeleteWebsiteUrlRequestDTO
impl Sync for DeleteWebsiteUrlRequestDTO
impl Unpin for DeleteWebsiteUrlRequestDTO
impl UnsafeUnpin for DeleteWebsiteUrlRequestDTO
impl UnwindSafe for DeleteWebsiteUrlRequestDTO
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more