NAME
Net::API::Stripe::Fraud::Review::Session - A Stripe Fraud Review Session Object
This is used in Net::API::Stripe::Fraud::Review
SYNOPSIS
my $session = $stripe->review->session({
browser => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',
device => 'Desktop',
platform => 'Linux',
version => '55.0.2883.87',
});
VERSION
v0.100.0
DESCRIPTION
Information related to the browsing session of the user who initiated the payment.
This is instantiated by method session in module Net::API::Stripe::Fraud::Review
CONSTRUCTOR
- new( %ARG )
-
Creates a new Net::API::Stripe::Fraud::Review::Session object. It may also take an hash like arguments, that also are method of the same name.
METHODS
- browser string
-
The browser used in this browser session (e.g., Chrome).
- device string
-
Information about the device used for the browser session (e.g., Samsung SM-G930T).
- platform string
-
The platform for the browser session (e.g., Macintosh).
- version string
-
The version for the browser session (e.g., 61.0.3163.100).
API SAMPLE
{
"id": "prv_fake123456789",
"object": "review",
"billing_zip": null,
"charge": "ch_fake123456789",
"closed_reason": null,
"created": 1571480456,
"ip_address": null,
"ip_address_location": null,
"livemode": false,
"open": true,
"opened_reason": "rule",
"reason": "rule",
"session": null
}
HISTORY
v0.1
Initial version
AUTHOR
Jacques Deguest <jack@deguest.jp>
SEE ALSO
Stripe API documentation:
COPYRIGHT & LICENSE
Copyright (c) 2019-2020 DEGUEST Pte. Ltd.
You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.