WebhookResultDto constructor
WebhookResultDto({
- String? id,
- required String userId,
- String? inboxId,
- required String webhookId,
- required String webhookUrl,
- required String messageId,
- String? redriveId,
- required WebhookResultDtoHttpMethodEnum httpMethod,
- required WebhookResultDtoWebhookEventEnum webhookEvent,
- int? responseStatus,
- required int responseTimeMillis,
- String? responseBodyExtract,
- WebhookResultDtoResultTypeEnum? resultType,
- required DateTime createdAt,
- required DateTime updatedAt,
- required bool seen,
Returns a new WebhookResultDto instance.
Implementation
WebhookResultDto({
this.id,
required this.userId,
this.inboxId,
required this.webhookId,
required this.webhookUrl,
required this.messageId,
this.redriveId,
required this.httpMethod,
required this.webhookEvent,
this.responseStatus,
required this.responseTimeMillis,
this.responseBodyExtract,
this.resultType,
required this.createdAt,
required this.updatedAt,
required this.seen,
});