pub struct AddFaqDTO {
pub location_id: String,
pub question: String,
pub answer: String,
pub knowledge_base_id: String,
}Available on crate feature
knowledge-base only.Expand description
AddFaqDTO from the GoHighLevel OpenAPI spec.
Fields§
§location_id: Stringlocation ID as string Required by the API.
question: Stringfaq question as a string Required by the API.
answer: Stringfaq answer as a string Required by the API.
knowledge_base_id: Stringknowledge base ID as string Required by the API.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AddFaqDTO
impl<'de> Deserialize<'de> for AddFaqDTO
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 AddFaqDTO
impl RefUnwindSafe for AddFaqDTO
impl Send for AddFaqDTO
impl Sync for AddFaqDTO
impl Unpin for AddFaqDTO
impl UnsafeUnpin for AddFaqDTO
impl UnwindSafe for AddFaqDTO
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