Table of Contents

Class MmsImageRequest

Namespace
Vonage.Messages.Mms
Assembly
Vonage.dll

Represents an MMS image message request. Supported formats: .jpg, .jpeg, .png, .gif.

public class MmsImageRequest : MmsMessageBase, IMessage
Inheritance
MmsImageRequest
Implements
Inherited Members

Properties

Channel

The channel to send to.

public override MessagesChannel Channel { get; }

Property Value

MessagesChannel

Image

The image attachment. Supported formats: .jpg, .jpeg, .png, .gif.

[JsonPropertyOrder(8)]
public Attachment Image { get; set; }

Property Value

Attachment

MessageType

The type of message to send.

public override MessagesMessageType MessageType { get; }

Property Value

MessagesMessageType

TimeToLive

Time-To-Live (how long a message should exist before it is delivered successfully) in seconds. If a message is not delivered successfully within the TTL time, the message is considered expired and will be rejected if TTL is supported.

[JsonPropertyOrder(9)]
[JsonPropertyName("ttl")]
public int? TimeToLive { get; set; }

Property Value

int?