Sha256: 60fb0e3bb4b2886fa903994247ffe8bdfd0ead75758e96c5717b2674ada4fa6f
Contents?: true
Size: 800 Bytes
Versions: 5
Compression:
Stored size: 800 Bytes
Contents
# Conekta::WebhookUpdateRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **url** | **String** | Here you must place the URL of your Webhook remember that you must program what you will do with the events received. Also do not forget to handle the HTTPS protocol for greater security. | | | **synchronous** | **Boolean** | It is a value that allows to decide if the events will be synchronous or asynchronous. We recommend asynchronous = false | [optional][default to false] | | **events** | **Array<String>** | | [optional] | ## Example ```ruby require 'conekta' instance = Conekta::WebhookUpdateRequest.new( url: https://webhook.site/89277eaa-a8e4-4306-8dc5-f55c80703dc8, synchronous: false, events: customer.created ) ```
Version data entries
5 entries across 5 versions & 1 rubygems