Class ReplyAttachment
Represents an attachment to a GroupMe Message containing an quoted message.
Namespace: GroupMeClientApi.Models.Attachments
Assembly: GroupMeClientApi.dll
Syntax
public class ReplyAttachment : Attachment
Properties
| Improve this Doc View SourceBaseRepliedMessageId
Gets the ID of the base message in the reply chain.
Declaration
public string BaseRepliedMessageId { get; }
Property Value
| Type | Description |
|---|---|
| String |
RepliedMessageId
Gets the ID of the message being replied to.
Declaration
public string RepliedMessageId { get; }
Property Value
| Type | Description |
|---|---|
| String |
Type
Gets the attachment type.
Declaration
public override string Type { get; }
Property Value
| Type | Description |
|---|---|
| String |
Overrides
| Improve this Doc View SourceUserId
Gets the unique identifier of the user who sent the message being replied to.
Declaration
public string UserId { get; }
Property Value
| Type | Description |
|---|---|
| String |
Methods
| Improve this Doc View SourceCreateReplyAttachment(Message)
Creates a new attachment indicating that a message is being sent in reply to an existing message.
Declaration
public static ReplyAttachment CreateReplyAttachment(Message replyToMessage)
Parameters
| Type | Name | Description |
|---|---|---|
| Message | replyToMessage | The existing message that is being replied to. |
Returns
| Type | Description |
|---|---|
| ReplyAttachment | A new reply attachment. |