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

Parse::SAMGov::Entity::Address - Defines the Address object of the entity.

VERSION

version 0.102

SYNOPSIS

    my $addr = Parse::SAMGov::Entity::Address->new(
        address => '123 Baker Street, Suite 1A',
        city => 'Boringville',
        state => 'ZB',
        country => 'USA',
        zip => '21900-1234',
    );

METHODS

new

Creates a new Address object for the entity or individual.

address

This fields holds the address information without the city/state/country and postal/zip code.

city

The city name of the entity's address.

state

The state or province of the entity's address.

district

The congressional district number of the entity's address.

country

The three character country code for the entity's address.

zip

The zip or postal code of the entity's address.

AUTHOR

Vikas N Kumar <vikas@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Selective Intellect LLC.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.