NAME
Faker::Plugin::PaymentVendor - Payment Vendor
ABSTRACT
Payment Vendor for Faker
VERSION
1.16
SYNOPSIS
package main;
use Faker::Plugin::PaymentVendor;
my $plugin = Faker::Plugin::PaymentVendor->new;
# bless(..., "Faker::Plugin::PaymentVendor")
DESCRIPTION
This package provides methods for generating fake data for payment vendor.
INHERITS
This package inherits behaviors from:
METHODS
This package provides the following methods:
execute
execute(HashRef $data) (Str)
The execute method returns a returns a random fake payment vendor.
Since 1.10
- execute example 1
-
package main; use Faker::Plugin::PaymentVendor; my $plugin = Faker::Plugin::PaymentVendor->new; # bless(..., "Faker::Plugin::PaymentVendor") # my $result = $plugin->execute; # "Visa"; # my $result = $plugin->execute; # "MasterCard"; # my $result = $plugin->execute; # "American Express";
new
new(HashRef $data) (Plugin)
The new method returns a new instance of the class.
Since 1.10