GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Google::Checkout::General::AddressFilters(3) User Contributed Perl Documentation Google::Checkout::General::AddressFilters(3)

Google::Checkout::General::AddressFilters

  use Google::Checkout::XML::Constants;
  use Google::Checkout::General::ShippingRestrictions;
  use Google::Checkout::General::MerchantCalculatedShipping;
  my $address_filters = Google::Checkout::General::AddressFilters->new(
                    allowed_zip           => ["94*"],
                    excluded_zip          => ["90*"],
                    excluded_country_area => [Google::Checkout::XML::Constants::FULL_50_STATES]);
  my $custom_shipping = Google::Checkout::General::MerchantCalculatedShipping->new(
                        price         => 45.99,
                        address_filters   => $address_filters,
                        shipping_name => "Custom shipping");

This module is used to define shipping address-filters which can then be added as part of a shipping method.

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".
Returns the allowed states (array reference).
Adds another allowed state.
Returns the allowed zip codes (array reference).
Adds another allowed zip code. Zip code can have the wildcard operator to specify a range of zip codes.
Returns the allowed country area (array reference).
Adds another allowed country area. Currently, the only supported country area is "Google::Checkout::XML::Constants::FULL_50_STATES".
Returns the excluded states (array reference).
Adds another excluded state.
Returns the excluded zip codes (array reference).
Adds another excluded zip code. Zip code can have the wildcard operator to specify a range of zip codes.
Adds another excluded country area.
Set weather or not US PO Box addresses are allowed
Returns true, false, or undefined if this has not been set
Enables international shipping by setting the world_area value
Returns true or undefined
Returns the allowed postal area (array reference).
Add a postal area

Copyright 2006 Google. All rights reserved.

Google::Checkout::General::ShippingRestrictions

2007-09-28 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.