App-ValidateBankAccount

 view release on metacpan or  search on metacpan

lib/App/ValidateBankAccount/Option.pm  view on Meta::CPAN

package App::ValidateBankAccount::Option;

$App::ValidateBankAccount::Option::VERSION   = '0.10';
$App::ValidateBankAccount::Option::AUTHORITY = 'cpan:MANWAR';

=head1 NAME

App::ValidateBankAccount::Option - Option as Moo Role for App::ValidateBankAccount.

=head1 VERSION

Version 0.10

=cut

use 5.006;
use Data::Dumper;

use Moo::Role;
use namespace::autoclean;
use Types::Standard -all;
use MooX::Options;

option country        => (is => 'ro', order => 1, isa => Str, format => 's', required => 0, doc => 'Country code. Default is UK.');
option sort_code      => (is => 'ro', order => 2, isa => Str, format => 's', required => 1, doc => 'Sort Code (required).');
option account_number => (is => 'ro', order => 3, isa => Str, format => 's', required => 1, doc => 'Bank Account Number (required).');

=head1 DESCRIPTION

B<FOR INTERNAL USE ONLY>

=head1 AUTHOR

Mohammad S Anwar, C<< <mohammad.anwar at yahoo.com> >>

=head1 REPOSITORY

L<https://github.com/manwar/App-ValidateBankAccount>

=head1 BUGS

Please report any bugs or feature requests to C<bug-app-validatebankaccount at rt.cpan.org>,
or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=App-ValidateBankAccount>.
I will  be notified and then you'll automatically be notified of progress on your
bug as I make changes.

=head1 SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc App::ValidateBankAccount::Option

You can also look for information at:

=over 4

=item * RT: CPAN's request tracker (report bugs here)

L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=App-ValidateBankAccount>

=item * AnnoCPAN: Annotated CPAN documentation

L<http://annocpan.org/dist/App-ValidateBankAccount>

=item * CPAN Ratings

L<http://cpanratings.perl.org/d/App-ValidateBankAccount>

=item * Search MetaCPAN

L<https://metacpan.org/pod/App::ValidateBankAccount>

=back

=head1 LICENSE AND COPYRIGHT

Copyright (C) 2019 Mohammad S Anwar.

This program  is  free software; you can redistribute it and / or modify it under
the  terms  of the the Artistic License (2.0). You may obtain  a copy of the full



( run in 0.553 second using v1.01-cache-2.11-cpan-39bf76dae61 )