pub struct GetAllKnowledgeBasesPaginatedDataDTO {
pub knowledge_bases: Vec<KnowledgeBaseListItemDTO>,
pub active_count: Option<f64>,
pub has_more: Option<bool>,
pub last_knowledge_base_id: Option<String>,
}Available on crate feature
knowledge-base only.Expand description
GetAllKnowledgeBasesPaginatedDataDTO from the GoHighLevel OpenAPI spec.
Fields§
§knowledge_bases: Vec<KnowledgeBaseListItemDTO>Array of knowledge bases Required by the API. (Optional here so responses that omit it still parse.)
active_count: Option<f64>Total count of all active knowledge bases Required by the API. (Optional here so responses that omit it still parse.)
has_more: Option<bool>Whether there are more knowledge bases available Required by the API. (Optional here so responses that omit it still parse.)
last_knowledge_base_id: Option<String>ID of the last knowledge base in this page (use for next page request)
Trait Implementations§
Source§impl Clone for GetAllKnowledgeBasesPaginatedDataDTO
impl Clone for GetAllKnowledgeBasesPaginatedDataDTO
Source§fn clone(&self) -> GetAllKnowledgeBasesPaginatedDataDTO
fn clone(&self) -> GetAllKnowledgeBasesPaginatedDataDTO
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 Default for GetAllKnowledgeBasesPaginatedDataDTO
impl Default for GetAllKnowledgeBasesPaginatedDataDTO
Source§fn default() -> GetAllKnowledgeBasesPaginatedDataDTO
fn default() -> GetAllKnowledgeBasesPaginatedDataDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAllKnowledgeBasesPaginatedDataDTO
impl<'de> Deserialize<'de> for GetAllKnowledgeBasesPaginatedDataDTO
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 GetAllKnowledgeBasesPaginatedDataDTO
impl RefUnwindSafe for GetAllKnowledgeBasesPaginatedDataDTO
impl Send for GetAllKnowledgeBasesPaginatedDataDTO
impl Sync for GetAllKnowledgeBasesPaginatedDataDTO
impl Unpin for GetAllKnowledgeBasesPaginatedDataDTO
impl UnsafeUnpin for GetAllKnowledgeBasesPaginatedDataDTO
impl UnwindSafe for GetAllKnowledgeBasesPaginatedDataDTO
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