Class Webhook2ContentTypeKeysDto
Data transfer object for associating webhooks with content type keys.
Inheritance
object
Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
Assembly: Umbraco.Infrastructure.dll
Syntax
public class Webhook2ContentTypeKeysDto
Constructors
View SourceWebhook2ContentTypeKeysDto()
Declaration
public Webhook2ContentTypeKeysDto()
Fields
View SourceTableName
Declaration
public const string TableName = "umbracoWebhook2ContentTypeKeys"
Field Value
| Type | Description |
|---|---|
| string |
Properties
View SourceContentTypeKey
Gets or sets the unique key (GUID) that identifies the associated content type.
Declaration
public Guid ContentTypeKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
WebhookId
Gets or sets the unique identifier of the associated webhook.
Declaration
[PrimaryKeyColumn(AutoIncrement = false, Name = "PK_webhookEntityKey2Webhook", OnColumns = "webhookId, entityKey")]
[ForeignKey(typeof(WebhookDto), OnDelete = Rule.Cascade)]
public int WebhookId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |