The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::API::Stripe::Fraud::ValueList - A Stripe Value List Object

SYNOPSIS

VERSION

    0.1

DESCRIPTION

Value lists allow you to group values together which can then be referenced in rules.

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 "radar.value_list"

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

alias string

The name of the value list for use in rules.

created timestamp

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

created_by string

The name or email address of the user who created this value list.

item_type string

The type of items in the value list. One of card_fingerprint, card_bin, email, ip_address, country, string, or case_sensitive_string.

list_items list

List of items contained within this value list.

This is a Net::API::Stripe::List object with array of Net::API::Stripe::Fraud::List::Item objects.

livemode boolean

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

metadata hash

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

name string

The name of the value list.

API SAMPLE

        {
          "id": "rsl_1FVF3MCeyNCl6fY2Y9Pa1Mp9",
          "object": "radar.value_list",
          "alias": "custom_ip_blocklist",
          "created": 1571480456,
          "created_by": "jenny@example.com",
          "item_type": "ip_address",
          "list_items": {
                "object": "list",
                "data": [],
                "has_more": false,
                "url": "/v1/radar/value_list_items?value_list=rsl_1FVF3MCeyNCl6fY2Y9Pa1Mp9"
          },
          "livemode": false,
          "metadata": {},
          "name": "Custom IP Blocklist"
        }

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api/radar/value_lists, https://stripe.com/docs/radar/lists#managing-list-items

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'