Comment

public struct Comment : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ID of the comment.

    Declaration

    Swift

    public let commentId: String
  • The details of the user who made the comment.

    Declaration

    Swift

    public let contributor: User?
  • The time that the comment was created.

    Declaration

    Swift

    public let createdTimestamp: TimeStamp?
  • The ID of the parent comment.

    Declaration

    Swift

    public let parentId: String?
  • If the comment is a reply to another user’s comment, this field contains the user ID of the user being replied to.

    Declaration

    Swift

    public let recipientId: String?
  • The status of the comment.

    Declaration

    Swift

    public let status: CommentStatusType?
  • The text of the comment.

    Declaration

    Swift

    public let text: String?
  • The ID of the root comment in the thread.

    Declaration

    Swift

    public let threadId: String?
  • The visibility of the comment. Options are either PRIVATE, where the comment is visible only to the comment author and document owner and co-owners, or PUBLIC, where the comment is visible to document owners, co-owners, and contributors.

    Declaration

    Swift

    public let visibility: CommentVisibilityType?
  • Undocumented

    Declaration

    Swift

    public init(commentId: String, contributor: User? = nil, createdTimestamp: TimeStamp? = nil, parentId: String? = nil, recipientId: String? = nil, status: CommentStatusType? = nil, text: String? = nil, threadId: String? = nil, visibility: CommentVisibilityType? = nil)