Class MessagesResponse
Represents the response from sending a message through the Messages API.
public record MessagesResponse : IEquatable<MessagesResponse>
- Inheritance
-
MessagesResponse
- Implements
- Inherited Members
Constructors
MessagesResponse(Guid, string)
Represents the response from sending a message through the Messages API.
public MessagesResponse(Guid MessageUuid, string WorkflowId = null)
Parameters
MessageUuidGuidThe unique identifier for the message. Use this to track delivery status via webhooks.
WorkflowIdstringThe ID of the failover workflow. Only present if the request included failover messages.
Properties
MessageUuid
The unique identifier for the message. Use this to track delivery status via webhooks.
public Guid MessageUuid { get; init; }
Property Value
WorkflowId
The ID of the failover workflow. Only present if the request included failover messages.
public string WorkflowId { get; init; }