Search Results for

    Show / Hide Table of Contents
    View Source

    Class WebhookRequestDto

    Inheritance
    object
    Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
    Assembly: Umbraco.Infrastructure.dll
    Syntax
    [TableName("umbracoWebhookRequest")]
    [PrimaryKey("id", AutoIncrement = true)]
    [ExplicitColumns]
    public class WebhookRequestDto

    Fields

    View Source

    TableName

    Declaration
    public const string TableName = "umbracoWebhookRequest"
    Field Value
    Type Description
    string

    Properties

    View Source

    Alias

    Declaration
    [Column("eventName")]
    public string Alias { get; set; }
    Property Value
    Type Description
    string
    View Source

    Id

    Declaration
    [Column("id")]
    [PrimaryKeyColumn(AutoIncrement = true)]
    public int Id { get; set; }
    Property Value
    Type Description
    int
    View Source

    RequestObject

    Declaration
    [Column(Name = "requestObject")]
    [SpecialDbType(SpecialDbTypes.NVARCHARMAX)]
    public string? RequestObject { get; set; }
    Property Value
    Type Description
    string
    View Source

    RetryCount

    Declaration
    [Column("retryCount")]
    public int RetryCount { get; set; }
    Property Value
    Type Description
    int
    View Source

    WebhookKey

    Declaration
    [Column("webhookKey")]
    public Guid WebhookKey { get; set; }
    Property Value
    Type Description
    Guid
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX