Don't like ads? PRO users don't see any ads ;-)
Guest

ksugihara

By: a guest on Aug 17th, 2012  |  syntax: PHP  |  size: 0.64 KB  |  hits: 27  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. //class declaration of complex data type RequestEnvelope
  2. class RequestEnvelope {
  3.     public $detailLevel;
  4.     public $errorLanguage;
  5. }
  6.  
  7. //class declaration of complex data type CurrencyList
  8. class CurrencyList{
  9.         public $currency;
  10. }
  11.  
  12. //class declaration of complex data type CurrencyCodeList
  13. class CurrencyCodeList {
  14.         public $currencyCode;
  15. }
  16.  
  17. //class declaration of complex data type ConvertCurrencyRequest
  18. class ConvertCurrencyRequest {
  19.         public $requestEnvelope;
  20.         public $baseAmountList;
  21.         public $convertToCurrencyList;
  22. }
  23.  
  24. //class declaration of complex data type CurrencyType
  25. class CurrencyType {
  26.         public $code;
  27.         public $amount;
  28. }