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>,
}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 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.
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
impl Clone for QueueModifiedPostDTO
Source§fn clone(&self) -> QueueModifiedPostDTO
fn clone(&self) -> QueueModifiedPostDTO
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more