Skip to main content

QueueModifiedPostDTO

Struct QueueModifiedPostDTO 

Source
pub struct QueueModifiedPostDTO {
Show 24 fields pub account_ids: Vec<String>, pub summary: Option<String>, pub media: Vec<PostMediaSchema>, pub status: Option<Value>, pub schedule_date: Option<String>, pub selected_best_time: Option<String>, pub created_by: Option<String>, pub follow_up_comment: Option<String>, pub og_tags_details: Option<OgTagsSchema>, pub type_: Option<Value>, pub post_approval_details: Option<PostApprovalSchema>, pub schedule_time_updated: Option<bool>, pub tags: Vec<String>, pub category_id: Option<String>, pub apply_watermark: Option<bool>, pub tiktok_post_details: Option<TiktokPostSchema>, pub gmb_post_details: Option<GMBPostSchema>, pub user_id: Option<String>, pub linkedin_post_details: Option<LinkedinPostSchema>, pub pinterest_post_details: Option<PinterestPostSchema>, pub facebook_post_details: Option<FacebookPostSchema>, pub instagram_post_details: Option<InstagramPostSchema>, pub youtube_post_details: Option<YoutubePostSchema>, pub location_id: Option<String>,
}
Available on crate feature social-planner only.
Expand description

QueueModifiedPostDTO from the GoHighLevel OpenAPI spec.

Fields§

§account_ids: Vec<String>

Account Ids (OAuth only)

§summary: Option<String>

Post Content

§media: Vec<PostMediaSchema>

Post Media

§status: Option<Value>

Post status indicating the current state of the post. Available Status Values: - draft - Post saved as draft, not yet ready for publishing - scheduled - Post scheduled for future publishing (requires scheduleDate) - in_review - Post pending approval (requires scheduleDate and postApprovalDetails) - published - Post has been published - in_progress - Post is currently being processed - pending - Post is awaiting platform processing for Instagram media container creation - failed - Post publishing failed - notification_sent - Story notification sent (for manual story posting) - deleted - Post has been deleted Validations: - scheduled or in_review status requires scheduleDate to be set - Draft posts skip most validations (accountIds, media requirements)

§schedule_date: Option<String>

Schedule Date

§selected_best_time: Option<String>

Selected Best Time slot for scheduling

§created_by: Option<String>

Created By

§follow_up_comment: Option<String>

Follow-up comment to be posted immediately after the main post is published. Supported Platforms: Facebook, Instagram, LinkedIn, YouTube NOT Supported: TikTok, Google My Business (GMB), Pinterest Use Case: Great for adding hashtags, additional context, or engagement prompts without cluttering the main post. - Follow-up comment is automatically trimmed to platform limits Reference: Platform Limitations Guide

§og_tags_details: Option<OgTagsSchema>

Og Tags Meta Data

§type_: Option<Value>

Post Type must be one of the following values: - post, story, reel

§post_approval_details: Option<PostApprovalSchema>

Post Approval Details

§schedule_time_updated: Option<bool>

Flag indicating if the schedule datetime was manually updated. Used for tracking rescheduled posts.

§tags: Vec<String>

Array of Tag IDs to associate with the post for organization and filtering. Get Tag IDs from: Get Tags API — use the _id field from each tag. Validation: All IDs must be valid MongoDB ObjectIds.

§category_id: Option<String>

Category ID to organize the post. Categories help group related posts. Get Category IDs from: Get Categories API — use the _id field. Validation: Must be a valid MongoDB ObjectId.

§apply_watermark: Option<bool>

Apply watermark to media in this post. Note: Watermarks are applied to images only. Videos are not watermarked.

§tiktok_post_details: Option<TiktokPostSchema>

Tiktok Post Details

§gmb_post_details: Option<GMBPostSchema>

GMB Post Details

§user_id: Option<String>

User ID

§linkedin_post_details: Option<LinkedinPostSchema>

Linkedin Post Details

§pinterest_post_details: Option<PinterestPostSchema>

Pinterest Post Details

§facebook_post_details: Option<FacebookPostSchema>

Facebook Post Details

§instagram_post_details: Option<InstagramPostSchema>

Instagram Post Details

§youtube_post_details: Option<YoutubePostSchema>

Youtube Post Details

§location_id: Option<String>

Location Id

Trait Implementations§

Source§

impl Clone for QueueModifiedPostDTO

Source§

fn clone(&self) -> QueueModifiedPostDTO

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for QueueModifiedPostDTO

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for QueueModifiedPostDTO

Source§

fn default() -> QueueModifiedPostDTO

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for QueueModifiedPostDTO

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for QueueModifiedPostDTO

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.