pub struct KnowledgeBaseListItemDTO {
pub id: Option<String>,
pub name: Option<String>,
pub created_at: Option<String>,
}Available on crate feature
knowledge-base only.Expand description
KnowledgeBaseListItemDTO from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>Knowledge base ID Required by the API. (Optional here so responses that omit it still parse.)
name: Option<String>Knowledge base name Required by the API. (Optional here so responses that omit it still parse.)
created_at: Option<String>Date when knowledge base was created Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for KnowledgeBaseListItemDTO
impl Clone for KnowledgeBaseListItemDTO
Source§fn clone(&self) -> KnowledgeBaseListItemDTO
fn clone(&self) -> KnowledgeBaseListItemDTO
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 KnowledgeBaseListItemDTO
impl Debug for KnowledgeBaseListItemDTO
Source§impl Default for KnowledgeBaseListItemDTO
impl Default for KnowledgeBaseListItemDTO
Source§fn default() -> KnowledgeBaseListItemDTO
fn default() -> KnowledgeBaseListItemDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KnowledgeBaseListItemDTO
impl<'de> Deserialize<'de> for KnowledgeBaseListItemDTO
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 KnowledgeBaseListItemDTO
impl RefUnwindSafe for KnowledgeBaseListItemDTO
impl Send for KnowledgeBaseListItemDTO
impl Sync for KnowledgeBaseListItemDTO
impl Unpin for KnowledgeBaseListItemDTO
impl UnsafeUnpin for KnowledgeBaseListItemDTO
impl UnwindSafe for KnowledgeBaseListItemDTO
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