Table of Contents

Class MessagesResponse

Namespace
Vonage.Messages
Assembly
Vonage.dll

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

MessageUuid Guid

The unique identifier for the message. Use this to track delivery status via webhooks.

WorkflowId string

The 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

Guid

WorkflowId

The ID of the failover workflow. Only present if the request included failover messages.

public string WorkflowId { get; init; }

Property Value

string