*
  • Name: string
  • *
  • AddressLineOne: string
  • *
  • AddressLineTwo: string
  • *
  • AddressLineThree: string
  • *
  • City: string
  • *
  • StateOrProvinceCode: string
  • *
  • PostalCode: string
  • *
  • CountryCode: string
  • *
  • PhoneNumber: 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_Checkout_ShippingAddress extends Creativestyle_CheckoutByAmazon_Model_Api_Model_Checkout_Abstract { public function __construct($data = null) { $this->_fields = array( 'Name' => array('FieldValue' => null, 'FieldType' => 'string'), 'AddressLineOne' => array('FieldValue' => null, 'FieldType' => 'string'), 'AddressLineTwo' => array('FieldValue' => null, 'FieldType' => 'string'), 'AddressLineThree' => array('FieldValue' => null, 'FieldType' => 'string'), 'City' => array('FieldValue' => null, 'FieldType' => 'string'), 'StateOrProvinceCode' => array('FieldValue' => null, 'FieldType' => 'string'), 'PostalCode' => array('FieldValue' => null, 'FieldType' => 'string'), 'CountryCode' => array('FieldValue' => null, 'FieldType' => 'string'), 'PhoneNumber' => array('FieldValue' => null, 'FieldType' => 'string') ); parent::__construct($data); } }