MmOutgoingWebhook constructor

MmOutgoingWebhook({
  1. String? id,
  2. int? createAt,
  3. int? updateAt,
  4. int? deleteAt,
  5. String? creatorId,
  6. String? teamId,
  7. String? channelId,
  8. String? description,
  9. String? displayName,
  10. List<String> triggerWords = const [],
  11. int? triggerWhen,
  12. List<String> callbackUrls = const [],
  13. String contentType = 'application/x-www-form-urlencoded',
})

Returns a new MmOutgoingWebhook instance.

Implementation

MmOutgoingWebhook({
  this.id,
  this.createAt,
  this.updateAt,
  this.deleteAt,
  this.creatorId,
  this.teamId,
  this.channelId,
  this.description,
  this.displayName,
  this.triggerWords = const [],
  this.triggerWhen,
  this.callbackUrls = const [],
  this.contentType = 'application/x-www-form-urlencoded',
});