pub struct OperationDetailsDTO {
pub discovered_urls_count: f64,
pub trained_urls_count: f64,
pub id: String,
pub location_id: String,
pub status: String,
pub url: String,
pub mode: String,
pub knowledge_base_id: String,
pub created_at: String,
pub updated_at: String,
pub v: f64,
pub robots_file_data: Option<String>,
}Available on crate feature
knowledge-base only.Expand description
OperationDetailsDTO from the GoHighLevel OpenAPI spec.
Fields§
§discovered_urls_count: f64Number of URLs discovered Required by the API.
trained_urls_count: f64Number of URLs successfully trained Required by the API.
id: StringOperation unique identifier Required by the API.
location_id: StringAssociated location ID Required by the API.
status: StringCurrent operation status
Allowed values: Pending, Processing, Successful, Failed, Existing,
Restricted, Cancelled, Aborted, Training.
Required by the API.
url: StringBase URL being crawled Required by the API.
mode: StringCrawling mode used
Allowed values: Exact, Path, Domain.
Required by the API.
knowledge_base_id: StringKnowledge base ID Required by the API.
created_at: StringOperation creation timestamp Required by the API.
updated_at: StringLast update timestamp Required by the API.
v: f64Version field Required by the API.
robots_file_data: Option<String>Robots.txt file content
Trait Implementations§
Source§impl Clone for OperationDetailsDTO
impl Clone for OperationDetailsDTO
Source§fn clone(&self) -> OperationDetailsDTO
fn clone(&self) -> OperationDetailsDTO
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 OperationDetailsDTO
impl Debug for OperationDetailsDTO
Source§impl Default for OperationDetailsDTO
impl Default for OperationDetailsDTO
Source§fn default() -> OperationDetailsDTO
fn default() -> OperationDetailsDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperationDetailsDTO
impl<'de> Deserialize<'de> for OperationDetailsDTO
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 OperationDetailsDTO
impl RefUnwindSafe for OperationDetailsDTO
impl Send for OperationDetailsDTO
impl Sync for OperationDetailsDTO
impl Unpin for OperationDetailsDTO
impl UnsafeUnpin for OperationDetailsDTO
impl UnwindSafe for OperationDetailsDTO
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