1234567891011121314151617181920212223 |
- <?php
- /**
- * Define a address.
- * @author Valentin CARRUESCO
- * @category Plugin
- * @license copyright
- */
- class Address extends Entity{
- public $id,$label,$type,$street,$complement,$city,$zip,$country,$state;
- public $fields =
- array(
- 'id' => 'key',
- 'label' => 'string',
- 'type' => 'string',
- 'street' => 'string',
- 'complement' => 'string',
- 'city' => 'string',
- 'zip' => 'string',
- 'country' => 'string',
- 'state' => 'string'
- );
- }
- ?>
|