The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::API::Stripe::WebHook::Object - An Stripe WebHook Object

SYNOPSIS

VERSION

    0.1

DESCRIPTION

CONSTRUCTOR

new( %ARG )

Creates a new Net::API::Stripe objects. It may also take an hash like arguments, that also are method of the same name.

verbose

Toggles verbose mode on/off

debug

Toggles debug mode on/off

METHODS

id string

Unique identifier for the object.

object string, value is "webhook_endpoint"

String representing the object’s type. Objects of the same type share the same value.

api_version string

The API version events are rendered as for this webhook endpoint.

application string

The ID of the associated Connect application.

created timestamp

Time at which the object was created. Measured in seconds since the Unix epoch.

enabled_events array containing strings

The list of events to enable for this endpoint. You may specify ['*'] to enable all events.

livemode boolean

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

secret string

The endpoint’s secret, used to generate webhook signatures. Only returned at creation.

status string

The status of the webhook. It can be enabled or disabled.

url string

The URL of the webhook endpoint.

API SAMPLE

        {
          "id": "we_1DVZbtCeyNCl6fY25k54GtOS",
          "object": "webhook_endpoint",
          "api_version": "2017-02-14",
          "application": null,
          "created": 1542006805,
          "enabled_events": [
                "invoice.created",
                "invoice.payment_failed",
                "invoice.payment_succeeded"
          ],
          "livemode": false,
          "status": "enabled",
          "url": "http://expugno.serveo.net/stripe/invoice"
        }

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api/webhook_endpoints

COPYRIGHT & LICENSE

Copyright (c) 2018-2019 DEGUEST Pte. Ltd.

You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 82:

You forgot a '=back' before '=head1'