class WebhookUpdateOptions
{
string CallbackUrl { get; set; }
bool? IsEnabled { get; set; }
bool? RegenerateSecret { get; set; }
List<Guid> WebhookEventIds { get; set; }
}
|
名称 |
类型 |
描述 |
默认值 |
选项 |
|
CallbackUrl |
string |
The url event data will be posted to. |
||
|
IsEnabled |
bool? |
Specify whether the webhooks should actively receive event data. |
||
|
RegenerateSecret |
bool? |
Specify whether the secret hash token should be regenerated. |
||
|
WebhookEventIds |
List<Guid> |
List of events that this url will recieve data for. |