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

Google::Checkout::General::ShippingRestrictions

SYNOPSIS

  use Google::Checkout::XML::Constants;
  use Google::Checkout::General::ShippingRestrictions;
  use Google::Checkout::General::MerchantCalculatedShipping;

  my $restriction = Google::Checkout::General::ShippingRestrictions->new(
                    allowed_zip           => ["94*"],
                    allowed_postal_area   => [Google::Checkout::XML::Constants::EU_COUNTRIES],
                    excluded_zip          => ["90*"],
                    excluded_country_area => [Google::Checkout::XML::Constants::FULL_50_STATES]);

  my $custom_shipping = Google::Checkout::General::MerchantCalculatedShipping->new(
                        price         => 45.99,
                        restriction   => $restriction,
                        shipping_name => "Custom shipping");

DESCRIPTION

This module is used to define shipping address-filters or restrictions which can then be added as part of a shipping method. Also, TaxTableAreas.pm is also a subclass of this module.

EU_COUNTRIES

This is a constant array storing all the EU country codes: 'AT', 'BE', 'BG', 'CY', 'CZ', 'DK', 'EE', 'FI', 'FR', 'DE', 'GR', 'HU', 'IE', 'IT', 'LV', 'LT', 'LU', 'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE', 'UK'

To view all the country codes in the command-line: perl -MGoogle::Checkout::General::ShippingRestrictions -le 'print join(", ", Google::Checkout::General::ShippingRestrictions::EU_COUNTRIES)'

new HASH

Constructor. Takes a hash as its argument with the following keys: ALLOWED_STATE, array reference of allowed states; ALLOWED_ZIP, array reference of allowed zip code; ALLOWED_COUNTRY_AREA, array reference of allowed country area; EXCLUDED_STATE, array reference of excluded states; EXCLUDED_ZIP, array reference of excluded zip codes; EXCLUDED_COUNTRY_AREA, array reference of excluded country area; ALLOWED_ALLOW_US_PO_BOX, true or false to enable PO Box addresses; ALLOWED_WORLD_AREA true or false to enable international shipping; ALLOWED_POSTAL_AREA, array reference of allowed countries. For ALLOWED_ZIP and EXCLUDED_ZIP, it's possible to use the wildcard operator (*) to specify a range of zip codes as in "94*" for all zip codes starting with "94".

get_allowed_state

Returns the allowed states (array reference).

add_allowed_state STATE

Adds another allowed state.

get_allowed_zip

Returns the allowed zip codes (array reference).

add_allowed_zip ZIP

Adds another allowed zip code. Zip code can have the wildcard operator to specify a range of zip codes.

get_allowed_country_area

Returns the allowed US country area (array reference).

add_allowed_country_area AREA

Adds an allowed US country area.

get_allow_us_po_box

Returns true, false, or undefined if this has not been set

add_allow_us_po_box BOOLEAN

Set whether or not US PO Box addresses are allowed

get_allowed_world_area

Returns true or undefined

add_allowed_world_area BOOLEAN

Enables international shipping by setting the world_area value

get_allowed_postal_area

Returns the allowed postal area (array reference).

add_allowed_postal_area AREA

Add a postal area

get_excluded_state

Returns the excluded states (array reference).

add_excluded_state STATE

Adds another excluded state.

get_excluded_zip

Returns the excluded zip codes (array reference).

add_excluded_zip ZIP

Adds another excluded zip code. Zip code can have the wildcard operator to specify a range of zip codes.

get_excluded_country_area

Returns the excluded US country areas (array reference).

add_excluded_country_area AREA

Adds another excluded US country area.

COPYRIGHT

Copyright 2006 Google. All rights reserved.