ScheduledPost

public struct ScheduledPost : Codable, Equatable, Hashable, Identifiable, Sendable

Represents a post that will be published at a future scheduled date.

  • id

    ID of the scheduled post in the database.

    Declaration

    Swift

    public var id: String
  • The timestamp for when the post will be posted.

    Declaration

    Swift

    public var scheduledAt: Date?
  • The parameters to be used when the post is posted

    Declaration

    Swift

    public var params: ScheduledPostParams
  • Media that is attached to this post.

    Declaration

    Swift

    public var mediaAttachments: [MediaAttachment]