pub struct CrawlingAggregateDTO {
pub id: Option<String>,
pub records: Vec<CrawlingRecordDTO>,
}Available on crate feature
knowledge-base only.Expand description
CrawlingAggregateDTO from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>Status grouping identifier
Allowed values: Pending, Processing, Successful, Failed, Existing,
Restricted, Cancelled, Aborted, Training.
Required by the API.
(Optional here so responses that omit it still parse.)
records: Vec<CrawlingRecordDTO>Array of records for this status Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for CrawlingAggregateDTO
impl Clone for CrawlingAggregateDTO
Source§fn clone(&self) -> CrawlingAggregateDTO
fn clone(&self) -> CrawlingAggregateDTO
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 CrawlingAggregateDTO
impl Debug for CrawlingAggregateDTO
Source§impl Default for CrawlingAggregateDTO
impl Default for CrawlingAggregateDTO
Source§fn default() -> CrawlingAggregateDTO
fn default() -> CrawlingAggregateDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CrawlingAggregateDTO
impl<'de> Deserialize<'de> for CrawlingAggregateDTO
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 CrawlingAggregateDTO
impl RefUnwindSafe for CrawlingAggregateDTO
impl Send for CrawlingAggregateDTO
impl Sync for CrawlingAggregateDTO
impl Unpin for CrawlingAggregateDTO
impl UnsafeUnpin for CrawlingAggregateDTO
impl UnwindSafe for CrawlingAggregateDTO
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