ข้ามไปยังเนื้อหา

Class MailgunInvitationDeliveryStatusCallbackEventResult

เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน

Namespace: Cephalon.MultiTenancy.Governance.MailgunDelivery.AspNetCore.Hosting
Assembly: Cephalon.MultiTenancy.Governance.MailgunDelivery.AspNetCore.dll

Describes how one Mailgun webhook event was translated and reconciled.

public sealed class MailgunInvitationDeliveryStatusCallbackEventResult

objectMailgunInvitationDeliveryStatusCallbackEventResult

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

MailgunInvitationDeliveryStatusCallbackEventResult(int, string?, string?, string?, string?, string?, string?, string, bool, bool, string)

Section titled “ MailgunInvitationDeliveryStatusCallbackEventResult(int, string?, string?, string?, string?, string?, string?, string, bool, bool, string)”

Creates a Mailgun callback event result.

public MailgunInvitationDeliveryStatusCallbackEventResult(int index, string? mailgunEventId, string? mailgunMessageId, string? mailgunEventType, string? tenantId, string? invitationId, string? status, string outcome, bool translated, bool reconciled, string reason)

index int

The zero-based event index inside the request payload.

mailgunEventId string?

The Mailgun event identifier when supplied.

mailgunMessageId string?

The Mailgun message identifier when supplied.

mailgunEventType string?

The Mailgun event type when supplied.

tenantId string?

The Cephalon tenant identifier when supplied.

invitationId string?

The Cephalon invitation identifier when supplied.

status string?

The normalized Cephalon delivery status when translated.

outcome string

The translation or reconciliation outcome.

translated bool

A value indicating whether the event was translated into a reconciliation request.

reconciled bool

A value indicating whether the event reconciled a tenant invitation.

reason string

The operator-facing reason for the event outcome.

Gets the zero-based event index inside the request payload.

public int Index { get; }

int

Gets the Cephalon invitation identifier when supplied.

public string? InvitationId { get; }

string?

Gets the Mailgun event identifier when supplied.

public string? MailgunEventId { get; }

string?

Gets the Mailgun event type when supplied.

public string? MailgunEventType { get; }

string?

Gets the Mailgun message identifier when supplied.

public string? MailgunMessageId { get; }

string?

Gets the translation or reconciliation outcome.

public string Outcome { get; }

string

Gets the operator-facing reason for the event outcome.

public string Reason { get; }

string

Gets a value indicating whether the event reconciled a tenant invitation.

public bool Reconciled { get; }

bool

Gets the normalized Cephalon delivery status when translated.

public string? Status { get; }

string?

Gets the Cephalon tenant identifier when supplied.

public string? TenantId { get; }

string?

Gets a value indicating whether the event was translated into a reconciliation request.

public bool Translated { get; }

bool