*
Name: string
* AddressId: string
* AddressLineOne: string
* AddressLineTwo: string
* AddressLineThree: string
* City: string
* State: string
* PostalCode: string
* CountryCode: string
*
*
* This file is part of The Official Amazon Payments Magento Extension
* (c) creativestyle GmbH
* All rights reserved
*
* Reuse or modification of this source code is not allowed
* without written permission from creativestyle GmbH
*
* @category Creativestyle
* @package Creativestyle_CheckoutByAmazon
* @copyright Copyright (c) 2012 creativestyle GmbH (http://www.creativestyle.de)
* @author Marek Zabrowarny / creativestyle GmbH
*/
class Creativestyle_CheckoutByAmazon_Model_Api_Model_Iopn_BillingAddress extends Creativestyle_CheckoutByAmazon_Model_Api_Model_Iopn_Abstract {
public function __construct($data = null) {
$this->_fields = array(
'Name' => array('FieldValue' => null, 'FieldType' => 'string'),
'AddressId' => array('FieldValue' => null, 'FieldType' => 'string'),
'AddressFieldOne' => array('FieldValue' => null, 'FieldType' => 'string'),
'AddressFieldTwo' => array('FieldValue' => null, 'FieldType' => 'string'),
'AddressFieldThree' => array('FieldValue' => null, 'FieldType' => 'string'),
'City' => array('FieldValue' => null, 'FieldType' => 'string'),
'State' => array('FieldValue' => null, 'FieldType' => 'string'),
'PostalCode' => array('FieldValue' => null, 'FieldType' => 'string'),
'CountryCode' => array('FieldValue' => null, 'FieldType' => 'string')
);
parent::__construct($data);
}
}