pub struct CrawledUrlDTO {
pub id: String,
pub url: String,
pub title: String,
pub status: String,
pub location_id: String,
pub knowledge_base_id: String,
pub content: String,
pub content_edited_by_user: bool,
pub updated_at: String,
}Available on crate feature
knowledge-base only.Expand description
CrawledUrlDTO from the GoHighLevel OpenAPI spec.
Fields§
§id: StringUnique identifier for the URL Required by the API.
url: StringThe actual URL that was crawled Required by the API.
title: StringTitle of the webpage Required by the API.
status: StringCurrent processing status of the URL
Allowed values: Pending, Processing, Successful, Failed, Existing,
Restricted, Cancelled, Aborted, Training.
Required by the API.
location_id: StringLocation ID associated with this URL Required by the API.
knowledge_base_id: StringKnowledge base ID this URL belongs to Required by the API.
content: StringURL to the stored content file Required by the API.
content_edited_by_user: boolWhether the content was edited by user Required by the API.
updated_at: StringLast updated timestamp Required by the API.
Trait Implementations§
Source§impl Clone for CrawledUrlDTO
impl Clone for CrawledUrlDTO
Source§fn clone(&self) -> CrawledUrlDTO
fn clone(&self) -> CrawledUrlDTO
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 CrawledUrlDTO
impl Debug for CrawledUrlDTO
Source§impl Default for CrawledUrlDTO
impl Default for CrawledUrlDTO
Source§fn default() -> CrawledUrlDTO
fn default() -> CrawledUrlDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CrawledUrlDTO
impl<'de> Deserialize<'de> for CrawledUrlDTO
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 CrawledUrlDTO
impl RefUnwindSafe for CrawledUrlDTO
impl Send for CrawledUrlDTO
impl Sync for CrawledUrlDTO
impl Unpin for CrawledUrlDTO
impl UnsafeUnpin for CrawledUrlDTO
impl UnwindSafe for CrawledUrlDTO
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