This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/webservice/classes/soap/model/address.class.php

24 lines
368 B
PHP

<?php
/**
* Stores an address
*
* An address consists of a street, number, zipcode and city.
* This class is for example purposes only, just to
* show how to create a webservice
*
*/
class address{
/** @var string */
public $street;
/** @var string */
public $nr;
/** @var string */
public $zipcode;
/** @var string */
public $city;
}
?>