pub struct VariationInputDTO {
pub content: Option<String>,
pub mentions: Vec<Value>,
pub og_tags: Option<OgTagsInputDTO>,
}Available on crate feature
social-planner only.Expand description
VariationInputDTO from the GoHighLevel OpenAPI spec.
Fields§
§content: Option<String>The text content of the variation.
mentions: Vec<Value>Platform-specific mentions within the content (e.g., @username references).
Open Graph tags for link previews.
Trait Implementations§
Source§impl Clone for VariationInputDTO
impl Clone for VariationInputDTO
Source§fn clone(&self) -> VariationInputDTO
fn clone(&self) -> VariationInputDTO
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 VariationInputDTO
impl Debug for VariationInputDTO
Source§impl Default for VariationInputDTO
impl Default for VariationInputDTO
Source§fn default() -> VariationInputDTO
fn default() -> VariationInputDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VariationInputDTO
impl<'de> Deserialize<'de> for VariationInputDTO
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 VariationInputDTO
impl RefUnwindSafe for VariationInputDTO
impl Send for VariationInputDTO
impl Sync for VariationInputDTO
impl Unpin for VariationInputDTO
impl UnsafeUnpin for VariationInputDTO
impl UnwindSafe for VariationInputDTO
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